arti/crates/tor-error/Cargo.toml

26 lines
695 B
TOML

[package]
name = "tor-error"
version = "0.2.0"
authors = ["Ian Jackson <iwj@torproject.org>"]
edition = "2018"
rust-version = "1.56"
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"
once_cell = "1"
strum = { version = "0.24", features = ["derive"] }
thiserror = "1"
[dev-dependencies]