2022-02-03 21:55:10 +00:00
|
|
|
[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 }
|
2022-02-05 06:11:24 +00:00
|
|
|
tracing = "0.1.30"
|
2022-02-03 21:55:10 +00:00
|
|
|
tracing-unwrap = "0.9.2"
|
2022-02-05 06:11:24 +00:00
|
|
|
tracing-subscriber = { version = "0.3.8", features = ["fmt"] }
|
2022-02-03 21:55:10 +00:00
|
|
|
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"
|
2022-02-04 19:36:54 +00:00
|
|
|
actix-web = "4.0.0-rc.1"
|
2022-02-03 21:55:10 +00:00
|
|
|
actix-rt = "2.6.0"
|
2022-02-04 19:36:54 +00:00
|
|
|
tracing-test = "0.2.1"
|
|
|
|
tracing-actix-web = "0.5.0-rc.1"
|
2022-02-08 04:04:45 +00:00
|
|
|
rust-embed= { version="5.9.0", features = ["actix"] }
|
|
|
|
mime_guess = "2.0.3"
|
2022-02-05 06:11:24 +00:00
|
|
|
bcrypt = "0.10.1"
|
|
|
|
actix-web-httpauth = "0.6.0-beta.7"
|
|
|
|
jsonwebtoken = "8.0.1"
|
|
|
|
rand = "0.8.4"
|
|
|
|
base64 = "0.13.0"
|