cryptools-mirror/Cargo.toml

33 lines
813 B
TOML
Raw Normal View History

2019-08-25 23:57:07 +00:00
[package]
2019-09-21 00:27:13 +00:00
name = "cryptools"
version = "0.11.1"
2019-08-25 23:57:07 +00:00
authors = ["scoobybejesus <scoobybejesus@users.noreply.github.com>"]
edition = "2018"
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 = ["tui", "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" }
2019-08-25 23:57:07 +00:00
csv = "1.0.0"
decimal = "2.0.4"
chrono = { version = "0.4", features = ["serde"] }
structopt = "0.2.10"
rustyline = "5.0.0"
tui = { version = "0.5", optional = true }
termion = { version = "1.5", optional = true }
dotenv = "0.14.1"
2019-08-25 23:57:07 +00:00
[profile.release]
lto = true