This commit is contained in:
2026-09-07 22:47:34 +03:00
commit 3fcee5ea9a
27 changed files with 1849 additions and 0 deletions

34
Cargo.toml Normal file
View File

@@ -0,0 +1,34 @@
[workspace]
members = [
"crates/erplt",
"crates/erplt-config",
"crates/erplt-api",
"crates/erplt-db",
"crates/erplt-ledger",
]
resolver = "3"
[workspace.dependencies]
anyhow = "1.0.104"
axum = { version = "0.8.9", features = ["macros"] }
chrono = { version = "0.4.45", features = ["serde"] }
console_error_panic_hook = "0.1.7"
diesel = { version = "2.3.13", features = ["postgres", "uuid", "chrono", "r2d2"] }
diesel_migrations = "2.3.2"
leptos = "0.8.20"
leptos_axum = "0.8.10"
serde = { version = "1.0.229", features = ["derive"] }
serde_json = "1.0.151"
thiserror = "2.0.20"
tokio = { version = "1.53.1", features = ["full"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
uuid = { version = "1.26.0", features = ["v4", "serde"] }
wasm-bindgen = "0.2.128"
clap = { version = "4.6.6", features = ["derive"] }
toml = "1.1.5"
camino = { version = "1.2.5", features = ["serde1"]}
humantime = "2.4.0"
humantime-serde = "1.1.1"