blob: 5541067a58e1f6a91c17a0e1be5c9e078823db67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
[package]
name = "tor-error"
version = "0.1.0"
authors = ["Ian Jackson <[email protected]>"]
edition = "2018"
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 my many (esp. high-level) Tor APIs."
keywords = [ "tor", "arti" ]
repository="https://gitlab.torproject.org/tpo/core/arti.git/"
categories = [ "tor" ]
[features]
default = ["backtrace"]
[dependencies]
backtrace = { version = "0.3.39", optional = true }
derive_more = "0.99"
futures = "0.3"
thiserror = "1"
[dev-dependencies]
|