-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
47 lines (38 loc) · 933 Bytes
/
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
[package]
name = "jaeger_stats"
version = "0.2.2"
about = "Parsing and analyzing Jaeger traces to extract statistics and call-chains"
author = "Cees van Kemenade"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bincode = "1.3.3"
bson = "2.9.0"
chrono = "0.4.26"
clap = { version = "4.3.14", features = ["derive"] }
datetime = "0.5.2"
encoding_rs = "0.8.32"
fxhash = "0.2.1"
lazy_static = "1.4.0"
log = "0.4.20"
regex = "1.9.1"
serde = { version="1.0", features=["derive"] }
serde_json = { version="1.0"}
thiserror = "1.0.49"
[lib]
path = "src/lib.rs"
[[bin]]
name = "trace_analysis"
path = "src/main/trace_analysis.rs"
[[bin]]
name = "stitch"
path = "src/main/stitch.rs"
[[bin]]
name = "show_traces"
path = "src/main/show_traces.rs"
[[bin]]
name = "mermaid"
path = "src/main/mermaid.rs"
[[bin]]
name = "dotgraph"
path = "src/main/dotgraph.rs"