24 lines
712 B
TOML
24 lines
712 B
TOML
[package]
|
|
name = "chellaris-rust-api"
|
|
version = "1.0.3"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
actix-web = "4.3.1"
|
|
chrono = "0.4.26"
|
|
ctrlc = "3.4.0"
|
|
dotenvy = "0.15.7"
|
|
dotenvy_macro = "0.15.7"
|
|
env_logger = "0.10.0"
|
|
reqwest = "0.11.20"
|
|
schemars = "0.8.10"
|
|
serde = { version = "1.0.185", features = ["derive"] }
|
|
serde_json = "1.0.105"
|
|
sqlx = { version = "0.7.1", features = ["postgres", "runtime-tokio"] }
|
|
tokio = { version = "1.32.0", features = ["rt"] }
|
|
toml = "0.7.6"
|
|
utoipa = { version = "3.5.0", features = ["actix_extras", "non_strict_integers"] }
|
|
utoipa-swagger-ui = { version = "3.1.5", features = ["actix-web"] }
|