-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (24 loc) · 971 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
[package]
name = "stacky-sides"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1.52"
axum = { version = "0.4.4", features = ["ws"] }
chrono = "0.4"
dotenv = "0.15.0"
futures = "0.3.19"
hyper = { version = "0.14.16", features = ["full"] }
sea-orm = { version = "0.5.0", features = [ "debug-print", "macros", "runtime-tokio-native-tls", "sqlx-postgres" ], default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
tera = "1"
tokio = { version = "1.15.0", features = ["full"] }
tower = { version = "0.4.11", features = ["full"] }
tower-cookies = "0.4.1"
tower-http = { version = "0.2.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = "0.3"
url = { version = "2", features = ["serde"] }
uuid = { version = "0.8", features = ["serde", "v4"] }