blob: 049069b54b7ce9ed38e04faa06e465e34ed16624 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
[package]
name = "tor-protover"
version = "0.38.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2024"
rust-version = "1.86"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Implementation for Tor's subprotocol versioning"
keywords = ["tor", "arti"]
categories = ["network-programming"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
[dependencies]
caret = { path = "../caret", version = "0.8.0" }
paste = "1"
serde_with = { version = "3.0.0", optional = true }
thiserror = "2"
tor-basic-utils = { path = "../tor-basic-utils", version = "0.38.0" }
tor-bytes = { path = "../tor-bytes", version = "0.38.0", optional = true }
[features]
default = []
full = ["caret/full", "serde", "tor-bytes", "tor-bytes?/full", "tor-basic-utils/full"]
serde = ["serde_with"]
tor-bytes = ["dep:tor-bytes"]
[package.metadata.docs.rs]
all-features = true
|