2019-08-25 23:57:07 +00:00
|
|
|
[package]
|
2019-09-21 00:27:13 +00:00
|
|
|
name = "cryptools"
|
2023-10-23 04:53:59 +00:00
|
|
|
version = "0.12.5"
|
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"
|
2019-10-28 01:25:23 +00:00
|
|
|
description = "Command-line utility for processing cryptocurrency transactions into 'lots' and 'movements'."
|
|
|
|
|
2020-12-08 05:07:10 +00:00
|
|
|
[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"]
|
|
|
|
|
2019-10-28 01:25:23 +00:00
|
|
|
[[bin]]
|
2019-10-30 03:10:15 +00:00
|
|
|
name = "cryptools"
|
2019-10-28 01:25:23 +00:00
|
|
|
path = "src/main.rs"
|
2019-08-25 23:57:07 +00:00
|
|
|
|
2020-12-01 04:05:49 +00:00
|
|
|
[workspace]
|
|
|
|
|
2019-08-25 23:57:07 +00:00
|
|
|
[dependencies]
|
2020-12-01 04:05:49 +00:00
|
|
|
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"] }
|
2019-08-25 23:57:07 +00:00
|
|
|
structopt = "0.2.10"
|
2023-10-19 18:37:46 +00:00
|
|
|
rustyline = "12.0.0"
|
2023-10-23 04:53:59 +00:00
|
|
|
tui = { version = "0.19", 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]
|
2021-12-08 20:03:50 +00:00
|
|
|
lto = true
|