arti/tor-proto/Cargo.toml

41 lines
877 B
TOML
Raw Normal View History

[package]
name = "tor-proto"
version = "0.0.0"
authors = ["Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
publish = false
[dependencies]
tor-llcrypto = { path="../tor-llcrypto" }
tor-bytes = { path="../tor-bytes" }
tor-cert = { path="../tor-cert" }
tor-linkspec = { path="../tor-linkspec" }
tor-checkable = { path="../tor-checkable" }
tor-protover = { path="../tor-protover" }
tor-cell = { path="../tor-cell" }
arrayref = "0.3.6"
2020-09-10 00:17:49 +01:00
bytes = "0.5.6"
crypto-mac = "0.9.1"
digest = "0.9.0"
2020-10-15 18:32:02 +01:00
futures = "0.3.6"
2020-09-10 00:17:49 +01:00
futures_codec = "0.4.1"
2020-08-28 23:14:17 +01:00
generic-array = "0.14.4"
hkdf = "0.9.0"
2020-09-10 00:17:49 +01:00
hmac = "0.9.0"
log = "0.4.11"
2020-09-10 00:17:49 +01:00
rand = "0.7.3"
rand_core = "0.5.1"
2020-09-21 18:45:36 +01:00
stream-cipher = "0.7.1"
2020-09-10 00:17:49 +01:00
subtle = "2.3.0"
2020-10-15 18:32:02 +01:00
thiserror = "1.0.21"
2020-09-10 00:17:49 +01:00
typenum = "1.12.0"
2020-09-21 18:45:36 +01:00
zeroize = "1.1.1"
[dev-dependencies]
futures-await-test = "0.3.0"
2020-08-28 23:14:17 +01:00
hex-literal = "0.3.1"
2020-09-29 21:43:16 +01:00
hex = "0.4.2"
pin-project="1.0.1"