17 lines
No EOL
512 B
TOML
17 lines
No EOL
512 B
TOML
[package]
|
|
name = "sharenet-api-postgres"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
domain = { path = "../domain" }
|
|
api = { path = "../api" }
|
|
application = { path = "../application" }
|
|
postgres = { path = "../postgres" }
|
|
clap = { workspace = true, features = ["derive"] }
|
|
tokio = { workspace = true, features = ["full", "macros", "rt-multi-thread"] }
|
|
anyhow = { workspace = true }
|
|
sqlx = { workspace = true }
|
|
dotenvy = { workspace = true } |