22 lines
443 B
TOML
22 lines
443 B
TOML
[package]
|
|
name = "domain"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[features]
|
|
test-helpers = []
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
chrono = { workspace = true }
|
|
chrono-tz = { workspace = true }
|
|
email_address = { workspace = true }
|
|
rand = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
uuid = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true }
|