-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
45 lines (35 loc) · 1.15 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
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
resolver="2"
members = [
# chronos binary
"chronos_bin",
# examples
"examples/*",
# migrations binary
"pg_mig"
]
[workspace.dependencies]
#async
futures="0.3.26"
async-trait = "0.1.66"
tokio = { version = "1", features = ["full", "tracing"] }
#db
tokio-postgres = {version="0.7.7", features=["with-chrono-0_4","with-serde_json-1","with-uuid-1"] }
deadpool-postgres = "0.10"
refinery = { version = "0.8.7", features = ["tokio-postgres"] }
clippy = "0.0.302"
rand = "0.8.5"
serial_test = "2.0.0"
#tracing
tracing = "0.1"
tracing-subscriber = "0.3"
tracing-opentelemetry = "0.21.0"
opentelemetry = { version = "0.20.0", features = ["rt-tokio", "trace"]}
opentelemetry_sdk = { version = "0.20.0", features = ["rt-tokio", "trace"]}
opentelemetry_api = { version = "0.20.0"}
# Collector
opentelemetry-jaeger = {version="0.19.0", features=["rt-tokio"]}
opentelemetry-stdout = { version = "0.1.0", features = ["trace"] }
opentelemetry-otlp = { version = "0.13.0", features = ["http-proto", "reqwest-client"] }
opentelemetry-http = "0.9.0"