actix-admin/Cargo.toml

33 lines
869 B
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"
version = "0.1.0"
2021-12-06 18:10:03 +01:00
edition = "2021"
2022-09-02 17:37:13 +02:00
exclude = [
"example/*",
"actix_admin_macros/*",
"tests/*",
"README.md",
"static/*",
"azure_auth/*",
]
[dependencies]
2022-04-23 20:03:09 +02:00
actix-web = "4.0.1"
2022-08-06 21:49:52 +02:00
actix-session = { version = "0.7.1", features = [] }
actix-multipart = "0.4.0"
futures-util = "0.3.21"
chrono = "0.4.20"
tera = "1.16.0"
2022-04-23 20:03:09 +02:00
async-trait = "0.1.53"
lazy_static = "1.4.0"
2022-08-27 14:41:08 +02:00
itertools = "0.10.3"
2022-04-23 20:03:09 +02:00
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-09-02 17:42:20 +02:00
actix-admin-macros = { version = "0.1.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-08-29 11:01:00 +02:00
sea-orm = { version = "^0.9.1", features = [ "sqlx-sqlite", "runtime-actix-native-tls", "macros" ], default-features = true }