arti/tor-llcrypto/Cargo.toml

46 lines
1.2 KiB
TOML
Raw Normal View History

[package]
name = "tor-llcrypto"
version = "0.0.0"
2021-03-17 18:43:40 +00:00
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
publish = false
2021-03-17 18:13:26 +00:00
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Low level cryptography wrappers used by Tor"
2021-03-17 18:41:02 +00:00
keywords = [ "tor", "arti", "cryptography" ]
[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"
2021-01-13 13:18:21 +00:00
curve25519-dalek = "3.0.2"
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"] }
2021-03-06 13:55:13 +00:00
hex = "0.4.3"
rand_core = "0.6.2"
old_rand_core = { package = "rand_core", version = "0.5.1" }
2020-09-10 00:17:49 +01:00
rsa = "0.3.0"
2021-02-19 14:39:23 +00:00
sha-1 = "0.9.4"
2021-02-10 23:23:38 +00:00
sha2 = "0.9.3"
sha3 = "0.9.1"
2021-03-06 13:55:13 +00:00
serde = "1.0.124"
2021-01-13 13:17:14 +00:00
signature = "1.3.0"
2021-01-13 13:18:21 +00:00
simple_asn1 = "0.5.1"
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.8.3"
2020-11-10 17:27:10 +00:00
cipher = "0.2.5"
2021-03-06 13:55:13 +00:00
serde_test = "1.0.124"
# 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" ]