finance-consumer/bookkeeper/Cargo.toml
2024-12-25 22:40:16 +08:00

28 lines
474 B
TOML

[package]
name = "bookkeeper"
version = "0.1.0"
edition = "2021"
[dependencies]
chrono = "0.4.39"
rocket = "0.5.1"
migration = { path = "migration" }
entity ={ path = "entity"}
rust_decimal = "1.36.0"
sea-orm-rocket = "0.5.4"
[workspace]
members = [".", "entity", "migration"]
[dependencies.sea-orm]
version = "1.1.0"
features = [
"sqlx-sqlite",
"runtime-tokio-rustls",
"macros",
"with-rust_decimal",
"with-chrono",
"with-uuid",
"with-json"
]