-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (43 loc) · 1.16 KB
/
Cargo.toml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[workspace]
resolver = "2"
[package]
name = "tracing-filter"
version = "0.1.0-alpha.2"
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.57"
description = "experimental next-generation filtering support for tracing"
autotests = false
[dependencies]
compact_str = "0.5.1"
matchers = "0.1.0"
miette = { version = "5.1.1", features = ["fancy"] }
once_cell = "1.13.0"
regex = "1.6.0"
smallvec = { version = "1.9.0", optional = true }
thiserror = "1.0.31"
thread_local = "1.1.4"
# The only place tracing is used not in tests is for STATIC_MAX_LEVEL
# Everything else just uses tracing-core; is this worth making optional?
[dependencies.tracing]
version = "0.1.35"
default-features = false
features = ["std"]
[dependencies.tracing-core]
version = "0.1.28"
default-features = false
features = ["std"]
[dependencies.tracing-subscriber]
version = "0.3.14"
default-features = false
features = ["registry", "std"]
[dev-dependencies]
env_logger = "0.9.0"
insta = { version = "1.15.0", features = ["glob"] }
log = "0.4.17"
[dev-dependencies.tracing-subscriber]
version = "0.3.14"
default-features = false
features = ["fmt", "tracing-log", "env-filter"]
[[test]]
name = "lib"