summaryrefslogtreecommitdiff
path: root/crates/tor-rpcbase/Cargo.toml
blob: 9cc6228fdcf603f4e0613e3369ff6b89019e24ae (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
42
[package]
name = "tor-rpcbase"
version = "0.45.0"
edition = "2024"
rust-version = "1.91"
authors = ["The Tor Project, Inc.", "eta <[email protected]>"]
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Low level functionality for Arti's RPC service"
keywords = ["tor", "arti", "rpc"]
categories = ["asynchronous"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"

[dependencies]
derive-deftly = { version = "~1.11.4", features = ["full", "beta"] }
derive_more = { version = "2.0.1", features = ["full"] }
downcast-rs = "2.0.1"
erased-serde = "0.4.2"
extend = "1.2.0"
futures = "0.3.14"
futures-await-test = "0.3.0"
inventory = "0.3.5"
paste = "1.0.3"
serde = { version = "1.0.103", features = ["derive"] }
thiserror = "2"
tor-async-utils = { path = "../tor-async-utils", version = "0.45.0" }
tor-error = { path = "../tor-error/", version = "0.45.0", features = ["rpc"] }
typetag = "0.2.7"
void = "1"

[dev-dependencies]
assert-impl = "0.1.3"
futures-await-test = "0.3.0"
regex = { version = "1", default-features = false, features = ["std"] }
serde_json = "1.0.50"

[features]
full = ["tor-async-utils/full", "tor-error/full", "describe-methods"]
describe-methods = []

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