36 lines
967 B
TOML
36 lines
967 B
TOML
[package]
|
|
name = "presentation"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "thoughts"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
domain = { workspace = true }
|
|
application = { workspace = true }
|
|
api-types = { workspace = true }
|
|
postgres = { workspace = true }
|
|
postgres-search = { workspace = true }
|
|
auth = { workspace = true }
|
|
axum = { workspace = true }
|
|
sqlx = { workspace = true }
|
|
tower-http = { workspace = true }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
uuid = { workspace = true }
|
|
chrono = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
dotenvy = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
sha2 = "0.10"
|
|
hex = "0.4"
|
|
|
|
[dev-dependencies]
|
|
http-body-util = "0.1"
|
|
tower = "0.5"
|
|
domain = { workspace = true, features = ["test-helpers"] }
|