18 lines
505 B
TOML
18 lines
505 B
TOML
|
[package]
|
||
|
name = "loyalty_rust"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
sqlx = { version = "0.6", features = [ "runtime-async-std-native-tls" ] }
|
||
|
actix-web = "4"
|
||
|
config = "0.13.1"
|
||
|
serde = "1.0.8"
|
||
|
deadpool-postgres = { version = "0.10.2", features = ["serde"] }
|
||
|
tokio-postgres = "0.7.6"
|
||
|
rusqlite = { version = "0.28.0", features = ["bundled"] }
|
||
|
actix-files = "0.6"
|
||
|
env_logger = "0.9.0"
|
||
|
log = "0.4"
|