summaryrefslogtreecommitdiff
path: root/crates/tor-basic-utils/Cargo.toml
blob: f47c65d8c51531733ecf6511ecb10f8c9574d23d (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
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "tor-basic-utils"
version = "0.36.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 = "General helpers used by Tor"
keywords = ["tor", "arti"]
# We must put *something* here and this will do
categories = ["rust-patterns"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"

[dependencies]
derive_more = { version = "2.0.1", features = ["full"] }
hex = "0.4"
itertools = "0.14.0"
paste = "1"
rand = "0.9.1"
rand_chacha = "0.9"
serde = { version = "1.0.103", optional = true, features = ["derive"] }
slab = "0.4.4"
smallvec = "1.10"
thiserror = "2"

[dev-dependencies]
derive_more = { version = "2.0.1", features = ["full"] }
educe = "0.4.22"
serde = { version = "1.0.103", features = ["derive"] }
serde-value = "0.7.0"
serde_json = "1.0.50"

[features]
full = ["serde"]

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

[target.'cfg(unix)'.dependencies]
libc = { version = "0.2", default-features = false }