cryptools-mirror/Cargo.toml

35 lines
936 B
TOML
Raw Permalink Normal View History

2019-08-25 23:57:07 +00:00
[package]
2019-09-21 00:27:13 +00:00
name = "cryptools"
version = "0.12.7"
2019-08-25 23:57:07 +00:00
authors = ["scoobybejesus <scoobybejesus@users.noreply.github.com>"]
2023-10-19 21:17:51 +00:00
edition = "2021"
description = "Command-line utility for processing cryptocurrency transactions into 'lots' and 'movements'."
[features]
# The default optional package. Many people will want to use this feature,
# but it is optional because Windows doesn't support it.
default = ["print_menu"]
print_menu = ["ratatui", "termion"]
[[bin]]
name = "cryptools"
path = "src/main.rs"
2019-08-25 23:57:07 +00:00
[workspace]
2019-08-25 23:57:07 +00:00
[dependencies]
crptls = { path = "crptls" }
2023-10-19 18:37:46 +00:00
csv = "1.3.0"
2023-10-22 16:19:56 +00:00
rust_decimal = "1.32.0"
rust_decimal_macros = "1.32.0"
2023-10-19 18:37:46 +00:00
chrono = { version = "0.4.31", features = ["serde"] }
clap = { version = "4.4.6", features = ["derive", "wrap_help"] }
2023-10-19 18:37:46 +00:00
rustyline = "12.0.0"
ratatui = { version = "0.24.0", optional = true, features = ['termion'] }
2023-10-22 16:19:56 +00:00
termion = { version = "2.0.1", optional = true }
2023-10-19 18:37:46 +00:00
dotenv = "0.15.0"
2019-08-25 23:57:07 +00:00
[profile.release]
lto = true