blob: d590d0a77e13848106550beec5e403155fcc690e (
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.40.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2024"
rust-version = "1.89"
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
|