32 lines
686 B
TOML
32 lines
686 B
TOML
[package]
|
|
name = "bookkeeper"
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
chrono = "0.4.39"
|
|
rocket = { version = "0.5.1", features = ["secrets"] }
|
|
rocket_dyn_templates = { version = "0.2.0", features = ["tera", "minijinja"]}
|
|
migration = { path = "migration" }
|
|
entity ={ path = "entity"}
|
|
rust_decimal = "1.36.0"
|
|
sea-orm-rocket = "0.5.4"
|
|
serde_json = "1.0.134"
|
|
serde = { version = "1.0.216", features = ["derive"] }
|
|
bcrypt = "0.17.0"
|
|
|
|
[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"
|
|
]
|