arti/crates/tor-netdoc/Cargo.toml

39 lines
1.1 KiB
TOML
Raw Normal View History

[package]
name = "tor-netdoc"
2021-10-29 16:05:51 +01:00
version = "0.0.1"
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 = "Network document formats used with the Tor protocols."
2021-03-17 18:41:02 +00:00
keywords = [ "tor", "arti" ]
categories = [ "parser-implementations" ]
repository="https://gitlab.torproject.org/tpo/core/arti.git/"
2021-05-05 15:33:10 +01:00
[features]
build_docs = [ "rand" ]
[dependencies]
2021-10-29 16:05:51 +01:00
tor-llcrypto = { path="../tor-llcrypto", version = "0.0.1"}
tor-bytes = { path="../tor-bytes", version = "0.0.1"}
tor-cert = { path="../tor-cert", version = "0.0.1"}
tor-protover = { path="../tor-protover", version = "0.0.1"}
tor-checkable = { path="../tor-checkable", version = "0.0.1"}
2020-10-15 18:32:02 +01:00
base64 = "0.13.0"
bitflags = "1.2.1"
time = { version = "0.3.3", features = ["std", "parsing", "macros"] }
digest = "0.9.0"
2021-03-06 13:55:13 +00:00
hex = "0.4.3"
once_cell = "1.7.2"
2021-08-25 12:25:48 +01:00
phf = { version = "0.10.0", features = ["macros"] }
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-02-19 14:39:23 +00:00
thiserror = "1.0.24"
weak-table = "0.3.0"
2020-10-02 19:04:03 +01:00
2021-05-05 15:33:10 +01:00
rand = { version = "0.8.3", optional=true }
2020-10-02 19:04:03 +01:00
[dev-dependencies]
2020-10-15 18:32:02 +01:00
hex-literal = "0.3.1"