forked from tokio-rs/tracing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (45 loc) · 1.53 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
54
55
[package]
name = "tracing-examples"
version = "0.0.0"
publish = false
edition = "2018"
[features]
default = []
[dev-dependencies]
# tracing crates
tracing = { path = "../tracing", version = "0.2"}
tracing-core = { path = "../tracing-core", version = "0.2"}
tracing-error = { path = "../tracing-error" }
tracing-flame = { path = "../tracing-flame" }
tracing-tower = { version = "0.1.0", path = "../tracing-tower" }
tracing-subscriber = { path = "../tracing-subscriber", version = "0.3", features = ["json", "chrono"] }
tracing-futures = { version = "0.3", path = "../tracing-futures", features = ["futures-01"] }
tracing-attributes = { path = "../tracing-attributes", version = "0.2"}
tracing-log = { path = "../tracing-log", version = "0.2", features = ["env_logger"] }
tracing-serde = { path = "../tracing-serde" }
tracing-opentelemetry = { path = "../tracing-opentelemetry" }
tracing-appender = { path = "../tracing-appender" }
tracing-journald = { path = "../tracing-journald" }
# serde example
serde_json = "1.0"
futures = "0.3"
tokio = { version = "1.1", features = ["full"] }
# env-logger example
env_logger = "0.8"
# tower examples
tower = { version = "0.4.4", features = ["full"] }
http = "0.2"
hyper = { version = "0.14", features = ["full"] }
rand = "0.7"
bytes = "1"
clap = "2.33"
# sloggish example
ansi_term = "0.12"
humantime = "2.0"
log = "0.4"
# infero example
inferno = "0.10.0"
tempdir = "0.3.7"
# opentelemetry example
opentelemetry = { version = "0.12", default-features = false, features = ["trace"] }
opentelemetry-jaeger = "0.11"