-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (42 loc) · 1.32 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
[package]
name = "poll"
version = "0.1.0"
edition = "2021"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-cors = "0.7"
actix-files = "0.6"
actix-identity = "0.7"
actix-session = { version = "0.9", features = ["cookie-session"] }
actix-web = "4"
actix-web-flash-messages = { version = "0.4", features = ["cookies"] }
anyhow = "1"
async-trait = "0.1"
clap = { version = "4", features = ["derive"] }
config = { version = "0.14", features = ["yaml"] }
futures = "0.3"
opentelemetry = { version = "0.22" }
opentelemetry-otlp = "0.15"
opentelemetry_sdk = { version = "0.22.1", features = ["rt-tokio"] }
sailfish = "0.8"
secrecy = { version = "0.8", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
serde-aux = "4"
serde_json = "1"
sqlx = { version = "0.7", features = [
"runtime-tokio-rustls",
"mysql",
"macros",
"migrate",
"uuid",
] }
thiserror = "1"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
tracing = "0.1"
tracing-actix-web = { version = "0.7", features = ["opentelemetry_0_19"] }
tracing-bunyan-formatter = "0.3"
tracing-log = "0.2"
tracing-opentelemetry = "0.23"
tracing-subscriber = { version = "0.3", features = ["env-filter", "registry"] }
uuid = { version = "1", features = ["v4", "serde"] }