arti/crates/tor-netdir/Cargo.toml

38 lines
1.2 KiB
TOML
Raw Normal View History

[package]
name = "tor-netdir"
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"
2021-03-17 18:13:26 +00:00
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Types to represent and use a Tor network directory"
2021-03-17 18:41:02 +00:00
keywords = [ "tor", "arti" ]
categories = [ "network-programming" ]
repository="https://gitlab.torproject.org/tpo/core/arti.git/"
[features]
default = []
experimental-api = []
testing = [ "hex", "hex-literal", "tor-netdoc/build_docs" ]
[dependencies]
2021-06-24 14:27:17 +01:00
tor-checkable = { path="../tor-checkable", version="0.0.0" }
tor-netdoc = { path="../tor-netdoc", version="0.0.0" }
tor-linkspec = { path="../tor-linkspec", version="0.0.0" }
tor-llcrypto = { path="../tor-llcrypto", version="0.0.0" }
tor-protover = { path="../tor-protover", version="0.0.0" }
tor-units = { path="../tor-units", version="0.0.0" }
2020-09-10 00:17:49 +01:00
tracing = "0.1.26"
rand = "0.8.3"
2021-03-06 13:55:13 +00:00
serde = { version = "1.0.124", features = ["derive"] }
2021-01-13 13:17:14 +00:00
signature = "1.3.0"
2021-02-19 14:39:23 +00:00
thiserror = "1.0.24"
hex = { version= "0.4.3", optional = true }
hex-literal = { version= "0.3.1", optional = true }
[dev-dependencies]
hex = "0.4.3"
hex-literal = "0.3.1"
2021-06-24 14:27:17 +01:00
tor-netdoc = { path="../tor-netdoc", version="0.0.0", features=["build_docs"] }