blob: 1ec92c0415932287febdb72a4893885ee3c6be2f (
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.33.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.83"
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 = "2.0.1", features = ["full"] }
thiserror = "2"
void = "1"
[dev-dependencies]
assert_matches = "1.5.0"
[package.metadata.docs.rs]
all-features = true
|