arti/crates/tor-proto/Cargo.toml

57 lines
1.7 KiB
TOML
Raw Normal View History

[package]
name = "tor-proto"
2021-11-29 20:21:58 +00:00
version = "0.0.2"
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"
2021-03-17 18:13:26 +00:00
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Asynchronous client-side implementation of the central Tor network protocols"
keywords = ["tor", "arti", "networking", "anonymity"]
categories = ["network-programming", "cryptography"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
[features]
default = []
hs = []
ntor_v3 = []
tokio = ["tokio-crate", "tokio-util"]
traffic-timestamp = ["coarsetime"]
[dependencies]
tor-llcrypto = { path = "../tor-llcrypto", version = "0.0.2" }
tor-bytes = { path = "../tor-bytes", version = "0.0.2" }
tor-cert = { path = "../tor-cert", version = "0.0.2" }
tor-linkspec = { path = "../tor-linkspec", version = "0.0.2" }
tor-checkable = { path = "../tor-checkable", version = "0.0.2" }
tor-protover = { path = "../tor-protover", version = "0.0.2" }
tor-cell = { path = "../tor-cell", version = "0.0.2" }
arrayref = "0.3.6"
bytes = "1.0.1"
2021-05-06 12:57:31 +01:00
cipher = "0.3.0"
digest = "0.10.0"
2021-02-23 20:54:29 +00:00
futures = "0.3.13"
2021-02-10 23:23:38 +00:00
asynchronous-codec = "0.6.0"
2020-08-28 23:14:17 +01:00
generic-array = "0.14.4"
hkdf = "0.12.0"
hmac = "0.12.0"
tracing = "0.1.26"
rand = "0.8.3"
rand_core = "0.6.2"
2020-12-21 15:18:41 +00:00
subtle = "2.4.0"
2021-02-19 14:39:23 +00:00
thiserror = "1.0.24"
2021-03-13 22:25:05 +00:00
typenum = "1.13.0"
2021-04-25 17:39:35 +01:00
zeroize = "1.3.0"
tokio-crate = { package = "tokio", version = "1.7.0", optional = true }
tokio-util = { version = "0.6", features = ["compat"], optional = true }
coarsetime = { version = "0.1.20", optional = true }
[dev-dependencies]
tor-rtcompat = { path = "../tor-rtcompat", version = "0.0.2", features = [
"tokio",
] }
2020-08-28 23:14:17 +01:00
hex-literal = "0.3.1"
2021-03-06 13:55:13 +00:00
hex = "0.4.3"