coffio/Cargo.toml

26 lines
936 B
TOML
Raw Normal View History

2024-02-14 18:16:45 +01:00
[package]
name = "coffio"
version = "0.1.0"
authors = ["Rodolphe Breard <rodolphe@what.tf>"]
edition = "2021"
2024-02-14 19:22:04 +01:00
description = "Abstraction layer for symmetric data encryption, primarily designed for database column encryption."
2024-02-14 18:16:45 +01:00
documentation = "https://docs.rs/coffio/"
readme = "README.md"
repository = "https://github.com/breard-r/libreauth"
license = "MIT OR Apache-2.0"
keywords = ["cryptography", "encryption"]
categories = ["cryptography"]
[features]
default = ["encryption", "ikm-management"]
encryption = []
ikm-management = []
i-understand-and-accept-the-risks = []
2024-02-14 18:16:45 +01:00
[dependencies]
2024-02-14 23:11:00 +01:00
base64ct = { version = "1.6.0", default-features = false, features = ["std"] }
2024-02-17 16:29:54 +01:00
blake3 = { version = "1.5.0", default-features = false }
2024-02-17 20:26:45 +01:00
chacha20poly1305 = { version = "0.10.1", default-features = false, features = ["std"] }
2024-02-14 23:11:00 +01:00
getrandom = { version = "0.2.12", default-features = false }
2024-02-15 10:56:21 +01:00
thiserror = { version = "1.0.57", default-features = false }