21 lines
738 B
TOML
21 lines
738 B
TOML
[package]
|
|
name = "domain"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
sqlx = { workspace = true, features = ["postgres", "uuid", "macros", "sqlx-macros", "chrono", "runtime-tokio", "json"] }
|
|
validator = { workspace = true, features = ["derive"] }
|
|
chrono = { workspace = true, features = ["serde"]}
|
|
tracing = { workspace = true }
|
|
tracing-appender = { workspace = true }
|
|
tracing-subscriber = { workspace = true, features = ["json"] }
|
|
hyper = { workspace = true }
|
|
axum = { workspace = true }
|
|
|
|
i18n = { path = "../i18n" }
|
|
macro = { path = "../macro" } |