* Upgrade `tracing-subscriber` dependency to 0.3.17 * Revert "fix: `regex` dep should enable `unicode` feature (#1605)" This reverts commit 41d9a853342155e0b7df4afb15990225b1c8a981.
23 lines
537 B
TOML
23 lines
537 B
TOML
[package]
|
|
name = "actix3-example-api"
|
|
version = "0.1.0"
|
|
authors = ["Sam Samai <sam@studio2pi.com.au>"]
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
actix3-example-core = { path = "../core" }
|
|
actix-http = "2"
|
|
actix-web = "3"
|
|
actix-flash = "0.2"
|
|
actix-files = "0.5"
|
|
futures = { version = "0.3" }
|
|
futures-util = { version = "0.3" }
|
|
tera = "1.8.0"
|
|
dotenvy = "0.15"
|
|
listenfd = "0.3.3"
|
|
serde = "1"
|
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|
|
entity = { path = "../entity" }
|
|
migration = { path = "../migration" }
|