actix-admin/Cargo.toml

42 lines
1.1 KiB
TOML
Raw Normal View History

[package]
2022-09-02 17:42:20 +02:00
name = "actix-admin"
2022-09-02 17:40:19 +02:00
description = "An admin interface for actix-web"
license = "MIT OR Apache-2.0"
2022-10-11 19:03:05 +02:00
version = "0.2.0"
repository = "https://github.com/mgugger/actix-admin"
2021-12-06 18:10:03 +01:00
edition = "2021"
2022-09-02 17:37:13 +02:00
exclude = [
2022-12-29 19:56:20 +01:00
"examples/*",
2022-09-02 17:37:13 +02:00
"actix_admin_macros/*",
"tests/*",
2022-12-29 19:56:20 +01:00
"README.md"
2022-09-02 17:37:13 +02:00
]
2022-12-29 19:56:20 +01:00
[lib]
name = "actix_admin"
path = "src/lib.rs"
[dependencies]
2022-11-08 17:10:27 +01:00
actix-web = "^4.0.1"
actix-session = { version = "^0.7.1", features = [] }
actix-multipart = "^0.4.0"
2022-12-29 19:56:20 +01:00
actix-files = "^0.6.2"
futures-util = "0.3.21"
chrono = "0.4.20"
2022-11-08 17:10:27 +01:00
tera = "^1.16.0"
async-trait = "^0.1.53"
lazy_static = "^1.4.0"
itertools = "^0.10.3"
serde = "^1.0.136"
serde_derive = "^1.0.136"
2022-08-20 23:39:18 +02:00
sea-orm = { version = "^0.9.1", features = [], default-features = false }
2022-10-11 19:05:24 +02:00
actix-admin-macros = { version = "0.2.0", path = "actix_admin_macros" }
derive_more = "0.99.17"
2022-08-20 23:39:18 +02:00
2022-08-27 14:41:08 +02:00
[dev-dependencies]
2022-12-29 19:56:20 +01:00
sea-orm = { version = "^0.9.1", features = [ "sqlx-sqlite", "runtime-actix-native-tls", "macros" ], default-features = true }
actix-rt = "2.7.0"
azure_auth = { path = "./examples/azure_auth/azure_auth" }
oauth2 = "4.1"
dotenv = "0.15"
actix-session = { version = "0.7.1", features = ["cookie-session"] }