-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (35 loc) · 1.05 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
[package]
name = "pf"
version = "0.1.0"
edition = "2021"
[lib]
path = "src/lib.rs"
[dependencies]
actix-web = "4.2.1"
tokio = { version = "1.21.2", features = ["full"] }
ulid = "1.0.0"
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.85"
config = "0.13.2"
chrono = { version = "0.4.22", features = ["serde", "rustc-serialize"] }
log = "0.4.17"
tracing = { version = "0.1.37", features = ["log"] }
anyhow = "1.0.65"
async-trait = "0.1.57"
tracing-subscriber = { version = "0.3.16", features = ["registry", "env-filter"] }
tracing-bunyan-formatter = "0.3.3"
tracing-log = "0.1.3"
once_cell = "1.15.0"
tracing-actix-web = "0.6.1"
actix-cors = "0.6.3"
reqwest = { version = "0.11.12", features = ["json", "gzip"] }
opentelemetry = { versions = "0.18.0", features = ["rt-tokio"] }
tracing-opentelemetry = "0.18.0"
opentelemetry-jaeger = "0.17.0"
tracing-appender = "0.2.2"
[dev-dependencies]
rand = "0.8.5"
[dependencies.sqlx]
version = "0.6.2"
default-features = false
features = ["runtime-actix-rustls", "macros", "mysql", "chrono", "migrate"]