-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (32 loc) · 1.01 KB
/
Copy pathCargo.toml
File metadata and controls
34 lines (32 loc) · 1.01 KB
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
[package]
name = "rust_server"
version = "0.1.0"
edition = "2021"
[dependencies]
dotenv = "0.15.0"
sea-orm = { version = "1.1.0", features = [ "sqlx-postgres", "runtime-tokio-rustls", "with-chrono", "with-uuid", "macros", "mock" ], default-features = false }
serde = { version = "1.0.213", features = ["derive"] }
serde_json = "1.0.132"
uuid = { version = "1.12.1", features = ["v4", "serde"] }
tracing = "0.1"
tracing-subscriber = "0.3"
chrono = { version = "0.4.38", features = ["serde"] }
reqwest = { version = "0.11.27", features = ["blocking", "json", "cookies"] }
regex = "1"
oso = "0.26.4"
derive_more = "0.99.18"
jsonwebtoken = "8.3.0"
async-trait = "0.1.83"
mockall = "0.11.4"
futures-util = "0.3.31"
anyhow = { version = "1.0.91", features = ["backtrace"] }
thiserror = "1.0.65"
tokio = { version = "1", features = ["full"] }
async-mutex = "1.4.0"
scraper = "0.14.0"
axum = "0.8.1"
tower-http = { version = "0.6.1", features = ["trace"] }
tower = "0.5.2"
[dev-dependencies]
http-body-util = "0.1.2"
pretty_assertions = "1.4.1"