blob: 340dd85ac1ec5db242668c874d984dfdecca1954 (
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
|
[package]
name = "tor-error"
version = "0.5.2"
authors = ["Ian Jackson <[email protected]>"]
edition = "2021"
rust-version = "1.65"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Provides the unified type-erased error type returned by many (esp. high-level) Tor APIs."
keywords = ["tor", "arti"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
categories = ["rust-patterns"]
[features]
default = ["backtrace"]
full = ["backtrace"]
experimental = ["experimental-api", "rpc"]
experimental-api = ["rpc", "__is_experimental"]
rpc = ["__is_experimental"]
__is_experimental = []
[dependencies]
backtrace = { version = "0.3.39", optional = true }
derive_more = "0.99.3"
futures = "0.3"
once_cell = "1"
strum = { version = "0.25", features = ["derive"] }
thiserror = "1"
[dev-dependencies]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
|