[package]
edition = "2021"
name = "finance-core"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared library for the Paperfoot accounting suite — money, tax, entities, and the shared SQLite schema that every finance CLI operates on."
readme = "README.md"
keywords = [
"accounting",
"finance",
"money",
"tax",
"ledger",
]
categories = [
"finance",
"database",
]
license = "MIT"
repository = "https://github.com/paperfoot/finance-core"
[lib]
name = "finance_core"
path = "src/lib.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.directories]
version = "5"
[dependencies.figment]
version = "0.10"
features = [
"toml",
"env",
]
[dependencies.refinery]
version = "0.8"
features = ["rusqlite"]
[dependencies.rusqlite]
version = "0.33"
features = [
"bundled",
"chrono",
]
[dependencies.rust_decimal]
version = "1"
features = ["serde-with-str"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "0.8"
[dev-dependencies.rust_decimal_macros]
version = "1"
[dev-dependencies.tempfile]
version = "3"