summaryrefslogtreecommitdiff
path: root/crates/tor-general-addr/Cargo.toml
blob: 948dcd7a6fb0e590c4c30b99608663a34abe8f40 (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
[package]
name = "tor-general-addr"
version = "0.25.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Generalized socket address type used by Tor"
keywords = ["tor", "arti", "async"]
categories = ["asynchronous"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"

[features]
default = []
full = ["arbitrary"]

[dependencies]
arbitrary = { version = "1.3.2", optional = true, features = ["derive"] }
derive_more = { version = "1.0.0", features = ["full"] }
thiserror = "2"
void = "1"

[dev-dependencies]
assert_matches = "1.5.0"

[package.metadata.docs.rs]
all-features = true