20 lines
625 B
TOML
20 lines
625 B
TOML
|
[package]
|
||
|
name = "vade"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
sea-orm = { version = "0.5.0", features = [ "sqlx-sqlite", "runtime-actix-native-tls", "macros", "mock"], default-features = false }
|
||
|
tracing = "0.1.29"
|
||
|
tracing-unwrap = "0.9.2"
|
||
|
tracing-subscriber = { version = "0.3.7", features=["fmt"] }
|
||
|
actix = "0.12.0"
|
||
|
actix-cors = "0.5.4"
|
||
|
chrono = { version = "0.4.19", features = ["serde"] }
|
||
|
serde = { version = "1.0.136", features= [ "derive" ] }
|
||
|
serde_json = "1.0.78"
|
||
|
actix-web = "4.0.0-rc.2"
|
||
|
actix-rt = "2.6.0"
|