app/Cargo.toml

42 lines
1.4 KiB
TOML
Raw Normal View History

2022-02-03 21:55:10 +00:00
[package]
name = "vade"
2022-02-16 05:51:58 +00:00
version = "0.1.2"
2022-02-03 21:55:10 +00:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-02-11 21:23:31 +00:00
sea-orm = { version = "0.5.0", features = [ "sqlx-sqlite", "runtime-actix-rustls", "macros", "mock"], default-features = false }
tracing = "0.1.30"
2022-02-03 21:55:10 +00:00
tracing-unwrap = "0.9.2"
tracing-subscriber = { version = "0.3.8", features = ["fmt"] }
2022-02-03 21:55:10 +00:00
actix = "0.12.0"
actix-cors = "0.6.0-beta.10"
actix-web-actors = "4.0.0-beta.6"
2022-02-03 21:55:10 +00:00
chrono = { version = "0.4.19", features = ["serde"] }
serde = { version = "1.0.136", features= [ "derive" ] }
serde_json = "1.0.78"
2022-02-12 08:03:27 +00:00
actix-web = { version = "4.0.0-rc.2", features = ["rustls"] }
2022-02-03 21:55:10 +00:00
actix-rt = "2.6.0"
tracing-test = "0.2.1"
tracing-actix-web = "0.5.0-rc.1"
rust-embed= { version="5.9.0", features = ["actix"] }
mime_guess = "2.0.3"
bcrypt = "0.10.1"
actix-web-httpauth = "0.6.0-beta.7"
jsonwebtoken = "8.0.1"
rand = "0.8.4"
2022-02-12 22:50:47 +00:00
tokio = { version = "1.16.1", features=["full"] }
base64 = "0.13.0"
2022-02-11 21:23:31 +00:00
sqlx = { version = "^0.5", features=["sqlite", "migrate"] }
2022-02-16 04:11:30 +00:00
reqwest = { version = "0.11.9", features = ["rustls-tls", "gzip"], default-features=false }
clap = { version = "^3.0", features=["cargo", "env"] }
2022-02-15 00:46:49 +00:00
actix-multipart = "0.4.0-beta.13"
futures = "0.3.21"
2022-02-16 04:11:30 +00:00
scraper = "0.12.0"
url = "2.2.2"
2022-02-12 08:03:27 +00:00
2022-02-11 21:23:31 +00:00
[target.'cfg(all(target_env = "musl", target_pointer_width = "64"))'.dependencies.jemallocator]
version = "0.3"