coffio/Cargo.toml

21 lines
650 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 = []
hazardous-materials = []
[dependencies]
2024-02-14 23:11:00 +01:00
base64ct = { version = "1.6.0", default-features = false, features = ["std"] }
getrandom = { version = "0.2.12", default-features = false }