double-ratchet-rs/Cargo.toml

45 lines
1.2 KiB
TOML
Raw Normal View History

2021-05-13 11:24:52 +00:00
[package]
name = "double-ratchet-2"
2021-05-13 15:54:38 +00:00
authors = ["Hannes Furmans"]
description = "Implementation of Double Ratchet as specified by Signal."
homepage = "https://github.com/Dione-Software/double-ratchet-2"
repository = "https://github.com/Dione-Software/double-ratchet-2"
2021-05-13 15:54:38 +00:00
readme = "README.md"
keywords = ["double-ratchet", "crypto", "cryptography", "signal"]
2022-07-11 14:26:24 +00:00
version = "0.3.7"
2021-05-13 11:24:52 +00:00
edition = "2018"
2021-05-13 18:23:43 +00:00
license = "MIT"
2021-05-13 11:24:52 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2021-06-18 10:16:01 +00:00
[badges]
maintenance = { status = "actively-developed" }
2021-05-13 11:24:52 +00:00
[dependencies]
p256 = {version = "0.10", features = ["ecdh", "arithmetic", "pem", "jwk"]}
2021-10-07 12:54:02 +00:00
rand_core = {version = "0.6"}
getrandom = {version = "0.2.3"}
hkdf = "0.12"
hmac = "0.12"
2021-10-24 17:29:26 +00:00
aes-gcm-siv = {version = "0.10.3"}
sha2 = {version = "0.10"}
serde = {version = "1", default-features = false, features = ["derive"]}
serde_bytes = "0.11"
bincode = "1"
hashbrown = {version = "0.13", features = ["serde"]}
2021-10-24 17:29:26 +00:00
zeroize = {version = "1.3", features = ["zeroize_derive"]}
2021-05-13 11:24:52 +00:00
2021-05-24 16:04:57 +00:00
[dev-dependencies]
criterion = "0.4.0"
2021-05-24 16:04:57 +00:00
[[bench]]
name = "double_ratchet_bench"
harness = false
2021-05-13 11:24:52 +00:00
[profile.release]
lto = true
2021-05-13 14:41:09 +00:00
[features]
wasm = ["getrandom/js"]