* Upgrade `tracing-subscriber` dependency to 0.3.17 * Revert "fix: `regex` dep should enable `unicode` feature (#1605)" This reverts commit 41d9a853342155e0b7df4afb15990225b1c8a981.
16 lines
482 B
TOML
16 lines
482 B
TOML
[package]
|
|
name = "poem-example-api"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
poem-example-core = { path = "../core" }
|
|
tokio = { version = "1.15.0", features = ["macros", "rt-multi-thread"] }
|
|
poem = { version = "1.2.33", features = ["static-files"] }
|
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
tera = "1.8.0"
|
|
dotenvy = "0.15"
|
|
entity = { path = "../entity" }
|
|
migration = { path = "../migration" }
|