mirror of
https://git.dirksys.ovh/dirk/bankserver.git
synced 2025-12-20 02:59:20 +01:00
57 lines
2.1 KiB
TOML
57 lines
2.1 KiB
TOML
[workspace]
|
|
members = [ "bank_client", "bank_core" ]
|
|
|
|
[workspace.dependencies]
|
|
chrono = { version = "0.4.40", features = ["serde"] }
|
|
garde = { version = "0.22.0", features = ["serde", "derive", "regex", "pattern"] }
|
|
http = "1.2"
|
|
regex = "1.11.1"
|
|
schemars = { version = "1.0.0-alpha.17", features = ["chrono04", "uuid1"] }
|
|
serde = { version = "1.0.218", features = ["derive"] }
|
|
serde_json = "1.0.139"
|
|
uuid = { version = "1.15.1", features = ["serde", "v7"] }
|
|
axum = { version = "0.8", default-features = false }
|
|
reqwest = { version = "0.12.15", features = ["json"] }
|
|
url = { version = "2.5.4", features = ["serde"] }
|
|
|
|
[package]
|
|
name = "bankserver"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[features]
|
|
default = ["schemas"]
|
|
schemas = ["dep:schemars", "bank_core/schemas"]
|
|
|
|
[[bin]]
|
|
name = "generate-schemas"
|
|
required-features = ["schemas"]
|
|
|
|
[dependencies]
|
|
async-broadcast = "0.7.2"
|
|
axum = { workspace = true, features = ["form", "http1", "json", "matched-path", "query", "tokio", "tower-log", "tracing", "ws"] }
|
|
chrono.workspace = true
|
|
concread = { version = "0.5.4", default-features = false, features = ["ahash", "asynch", "maps"] }
|
|
config = { version = "0.15.8", default-features = false }
|
|
dbmigrator = { git = "https://github.com/DSeeLP/dbmigrator.git", branch = "macros", version = "0.4.4-alpha", features = ["tokio-postgres"] }
|
|
deadpool = "0.12"
|
|
deadpool-postgres = { version = "0.14", features = ["serde"] }
|
|
futures-util = "0.3.31"
|
|
garde.workspace = true
|
|
jsonwebtoken = { version = "9.3", default-features = false }
|
|
password-auth = "1.0.0"
|
|
regex.workspace = true
|
|
schemars = { workspace = true, optional = true }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
serde_with = "3.12.0"
|
|
tokio = { version = "1.43", features = ["tracing", "time", "sync", "net", "io-std", "io-util", "macros", "rt-multi-thread", "signal"] }
|
|
tokio-postgres = { version = "0.7.13", features = ["with-chrono-0_4", "with-serde_json-1", "with-uuid-1"] }
|
|
tracing = "0.1.41"
|
|
tracing-error = "0.2.1"
|
|
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
|
|
uuid.workspace = true
|
|
bank_core = { path = "./bank_core", features = ["axum"] }
|
|
reqwest.workspace = true
|
|
url.workspace = true
|