-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (32 loc) · 1.06 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
[workspace]
members = ["migration", "views"]
[package]
name = "igdbc"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
migration = { path = "migration" }
views = { path = "views" }
chrono = "0.4.38"
config = "0.14.1"
lazy_static = "1.4.0"
once_cell = "1.14.0"
reqwest = { version = "0.11", features = [ "json", "blocking" ] }
schemars = { version = "0.8.10", features = [ "chrono" ] }
sea-orm = { version = "1.1.0", features = [ "sqlx-postgres", "runtime-tokio-rustls", "macros" ] }
serde = "1.0.144"
serde_json = "1.0.85"
serde_path_to_error = "0.1"
tokio = { version = "1.41.0", features = ["full"] }
thiserror = "1.0.34"
url = { version = "2.5.2", features = ["serde"] }
axum = "0.6.18"
axum-macros = "0.3.7"
futures = "0.3.28"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tower-http = { version = "0.4.1", features = ["cors", "trace"] }
hyper = "0.14.27"
utoipa = { version = "5.0.0-rc.0", features = ["chrono"] }
itertools = "0.13.0"