-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
32 lines (28 loc) · 824 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
[package]
name = "yoda-taller"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
test_fixture = []
[dependencies]
anyhow.workspace = true
axum-tracing-opentelemetry.workspace = true
axum.workspace = true
opentelemetry-jaeger.workspace = true
opentelemetry.workspace = true
reqwest.workspace = true
serde_yaml.workspace = true
serde.workspace = true
thiserror.workspace = true
tokio.workspace = true
tracing-bunyan-formatter.workspace = true
tracing-log.workspace = true
tracing-opentelemetry.workspace = true
tracing-subscriber.workspace = true
tracing.workspace = true
[dev-dependencies]
once_cell.workspace = true
serde_json.workspace = true
wiremock.workspace = true
yoda-taller = { path = ".", features = ["test_fixture"]}