Update Cargo.toml

This commit is contained in:
Adrian Woźniak 2023-07-28 21:57:31 +02:00 committed by GitHub
parent 3dcc17b6af
commit 360129b0cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,6 +18,10 @@ exclude = [
name = "actix_admin" name = "actix_admin"
path = "src/lib.rs" path = "src/lib.rs"
[features]
default = []
enable-tracing = ['tracing']
[dependencies] [dependencies]
actix-web = "^4.3.1" actix-web = "^4.3.1"
actix-session = { version = "^0.7.2", features = [] } actix-session = { version = "^0.7.2", features = [] }
@ -36,6 +40,7 @@ actix-admin-macros = { version = "0.5.0", path = "actix_admin_macros" }
derive_more = "0.99.17" derive_more = "0.99.17"
regex = "1.8.4" regex = "1.8.4"
urlencoding = "2.1.2" urlencoding = "2.1.2"
tracing = { version = "0.1", optional = true }
[dev-dependencies] [dev-dependencies]
sea-orm = { version = "^0.11.3", features = [ "sqlx-sqlite", "runtime-actix-native-tls", "macros" ], default-features = true } sea-orm = { version = "^0.11.3", features = [ "sqlx-sqlite", "runtime-actix-native-tls", "macros" ], default-features = true }
@ -43,4 +48,4 @@ actix-rt = "2.8.0"
azure_auth = { path = "./examples/azure_auth/azure_auth" } azure_auth = { path = "./examples/azure_auth/azure_auth" }
oauth2 = "4.4.1" oauth2 = "4.4.1"
dotenv = "0.15" dotenv = "0.15"
actix-session = { version = "0.7.2", features = ["cookie-session"] } actix-session = { version = "0.7.2", features = ["cookie-session"] }