summaryrefslogtreecommitdiff
path: root/crates/safelog/Cargo.toml
blob: 7a28c76dc846842d0d0961345494bdb339cfb99c (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
[package]
name = "safelog"
version = "0.8.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2024"
rust-version = "1.89"
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]
derive_more = { version = "2.0.1", features = ["full"] }
educe = "0.4.22"
either = "1"
fluid-let = "1"
serde = { version = "1.0.103", optional = true, features = ["derive"] }
thiserror = "2"

[dev-dependencies]
serial_test = "3.0.0"
static_assertions = "1"
[package.metadata.docs.rs]
all-features = true