organic/Cargo.toml

29 lines
449 B
TOML
Raw Normal View History

2022-07-16 03:26:49 +00:00
[package]
name = "toy"
version = "0.1.0"
edition = "2021"
2022-07-17 22:45:51 +00:00
license = "0BSD"
2023-04-10 18:28:40 +00:00
default-run = "toy"
2022-07-16 03:26:49 +00:00
[[bin]]
name = "toy"
path = "src/main.rs"
[[bin]]
name = "org_compare"
path = "src/org_compare.rs"
2022-07-16 03:26:49 +00:00
[dependencies]
nom = "7.1.1"
2023-03-27 21:06:22 +00:00
opentelemetry = "0.17.0"
opentelemetry-jaeger = "0.16.0"
tracing = "0.1.37"
2023-03-27 21:06:22 +00:00
tracing-opentelemetry = "0.17.2"
2023-03-27 19:08:29 +00:00
tracing-subscriber = {version="0.3.16", features=["env-filter"]}
2022-07-16 03:26:49 +00:00
[features]
2023-04-10 17:38:31 +00:00
default = ["compare"]
compare = []