31 lines
637 B
TOML
31 lines
637 B
TOML
[package]
|
|
name = "accounting-rust"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
chrono = "0.4.39"
|
|
clap = { version = "4.5.53", features = ["derive"] }
|
|
crossterm = "0.29.0"
|
|
csv = "1.4.0"
|
|
inquire = "0.9.1"
|
|
nom = "7.1.3"
|
|
nom_locate = "4.2.0"
|
|
nucleo-matcher = "0.3.1"
|
|
rand = "0.8.5"
|
|
ratatui = "0.29.0"
|
|
regex = "1.11.1"
|
|
rt-format = "0.3.1"
|
|
rust_decimal = "1.36.0"
|
|
rust_decimal_macros = "1.36.0"
|
|
serde = { version="1.0", features = ["derive"] }
|
|
strsim = "0.11.1"
|
|
toml = "0.9.10"
|
|
|
|
[profile.release]
|
|
debug = 1
|
|
|
|
# [rust]
|
|
# debuginfo-level = 1 |