arti/crates/safelog/Cargo.toml

33 lines
882 B
TOML
Raw Normal View History

[package]
name = "safelog"
version = "0.3.3"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2021"
2023-04-11 20:31:12 +01:00
rust-version = "1.65"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Conditionally suppress confidential information from logs"
keywords = ["tor", "arti", "logging", "privacy"]
# We must put *something* here and this will do
categories = ["rust-patterns"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
[features]
default = []
full = []
[dependencies]
2022-11-27 19:54:30 +00:00
derive_more = "0.99.3"
educe = "0.4.6"
2022-11-27 19:54:30 +00:00
either = "1"
fluid-let = "1"
serde = { version = "1.0.103", optional = true, features = ["derive"] }
thiserror = "1"
[dev-dependencies]
2023-04-28 17:35:54 +01:00
serial_test = "2.0.0"
static_assertions = "1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]