actix-admin/Cargo.toml

30 lines
720 B
TOML
Raw Normal View History

[package]
name = "actix-web-sample-app"
version = "0.1.0"
2021-12-06 18:10:03 +01:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-04-23 20:03:09 +02:00
actix-web = "4.0.1"
actix-rt = "2.7.0"
actix-session = "0.5.0"
2021-11-29 17:35:11 +01:00
tera = "1.15.0"
2022-07-21 19:01:05 +02:00
itertools = "0.10.3"
oauth2 = "4.1"
base64 = "0.13.0"
2022-04-23 20:03:09 +02:00
async-trait = "0.1.53"
rand = "0.8.5"
url = "2.2.2"
2022-04-23 20:03:09 +02:00
http = "0.2.6"
2021-12-06 18:10:03 +01:00
dotenv = "0.15"
2022-04-23 20:03:09 +02:00
futures = "0.3.21"
serde = "1.0.136"
serde_json = "1.0.79"
serde_derive = "1.0.136"
quote = "1.0"
sea-orm = { version = "0.8.0", features = [ "sqlx-sqlite", "runtime-actix-native-tls", "macros" ], default-features = false }
2022-04-27 18:22:47 +02:00
syn = "1.0.91"
2022-04-24 14:35:43 +02:00
actix_admin = { path = "actix_admin" }
azure_auth = { path = "azure_auth" }