mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
29 lines
663 B
TOML
29 lines
663 B
TOML
[package]
|
|
name = "sketching"
|
|
description = "Logging crate"
|
|
# We do not have tests in this pkg
|
|
autotests = false
|
|
|
|
version = { workspace = true }
|
|
authors = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
homepage = { workspace = true }
|
|
repository = { workspace = true }
|
|
|
|
[lib]
|
|
test = false
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
num_enum = { workspace = true }
|
|
tracing = { workspace = true, features = ["attributes"] }
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
|
tracing-forest = { workspace = true, features = [
|
|
"uuid",
|
|
"smallvec",
|
|
"tokio",
|
|
"env-filter",
|
|
] }
|