arti/tor-llcrypto/Cargo.toml

41 lines
942 B
TOML
Raw Normal View History

[package]
name = "tor-llcrypto"
version = "0.0.0"
authors = ["Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
publish = false
[dependencies]
2020-10-26 18:56:06 +00:00
aes-ctr = "0.6.0"
2020-09-10 00:17:49 +01:00
arrayref = "0.3.6"
2020-10-15 18:32:02 +01:00
base64 = "0.13.0"
2020-08-28 23:14:17 +01:00
curve25519-dalek = "3.0.0"
2020-09-10 00:17:49 +01:00
digest = "0.9.0"
2020-10-15 18:32:02 +01:00
ed25519-dalek = { version = "1.0.1", features = ["batch"] }
2020-09-10 00:17:49 +01:00
hex = "0.4.2"
2020-11-10 17:27:10 +00:00
num-bigint = "0.3.1"
2020-11-05 21:56:29 +00:00
num-traits = "0.2.14"
2020-09-10 00:17:49 +01:00
rsa = "0.3.0"
2020-11-10 17:27:10 +00:00
sha-1 = "0.9.2"
sha2 = "0.9.2"
sha3 = "0.9.1"
signature = "1.2.2"
2020-10-26 18:56:06 +00:00
simple_asn1 = "0.5.0"
2020-12-21 15:18:41 +00:00
subtle = "2.4.0"
2020-09-10 00:17:49 +01:00
x25519-dalek = "1.1.0"
2020-12-21 15:18:41 +00:00
zeroize = "1.2.0"
[dev-dependencies]
2020-08-28 23:14:17 +01:00
hex-literal = "0.3.1"
rand = "0.7.3"
2020-11-10 17:27:10 +00:00
cipher = "0.2.5"
# This is a magic crate that runs the tests and checks the format
# before it lets you commit or push. It installs git hooks for this whenever
# you say "cargo test".
[dev-dependencies.cargo-husky]
version = "1.5.0"
features = ["precommit-hook", "run-cargo-test",
"run-cargo-fmt", "run-for-all" ]