Update Cargo.toml

This commit is contained in:
Adrian Woźniak 2023-07-28 21:57:31 +02:00
parent f82b331f98
commit 4f01634b0e

View File

@ -21,6 +21,7 @@ path = "src/lib.rs"
[features] [features]
default = ["bulma_css"] default = ["bulma_css"]
bulma_css = [] bulma_css = []
enable-tracing = ['tracing']
[dependencies] [dependencies]
actix-web = "^4.3.1" actix-web = "^4.3.1"
@ -40,6 +41,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.12.2", features = [ "sqlx-sqlite", "runtime-actix-native-tls", "macros" ], default-features = true } sea-orm = { version = "^0.12.2", features = [ "sqlx-sqlite", "runtime-actix-native-tls", "macros" ], default-features = true }