[package] name = "sixpence" version = "0.0.2" description = "An accounting tool for hackers" authors = ["Z. Charles Dziura "] edition = "2021" license = "BSD-3-Clause" publish = true [dependencies] accounting = "0.2.0" bincode = "1.3" chrono = { version = "0.4.19", features = ["alloc", "clock", "serde", "std"] } clap = { version = "3.1.18", features = ["default", "derive"] } dirs = "4.0.0" getset = "0.1.2" itertools = "0.10.3" lazy_static = "1.4.0" pad = "0.1" regex = "1.5.5" serde = { version = "1.0", features = ["derive", "rc", "std"] } ulid = { version = "0.5", features = ["serde", "std"] } [[bin]] name = "sixp" path = "src/main.rs" [features]