26 lines
425 B
TOML
26 lines
425 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"}
|
|
|
|
[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"
|
|
]
|