2019-08-25 23:57:07 +00:00
|
|
|
[package]
|
2019-09-21 00:27:13 +00:00
|
|
|
name = "cryptools"
|
2019-12-07 18:27:15 +00:00
|
|
|
version = "0.8.5"
|
2019-08-25 23:57:07 +00:00
|
|
|
authors = ["scoobybejesus <scoobybejesus@users.noreply.github.com>"]
|
|
|
|
edition = "2018"
|
2019-10-28 01:25:23 +00:00
|
|
|
description = "Command-line utility for processing cryptocurrency transactions into 'lots' and 'movements'."
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "crptls"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[[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
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
csv = "1.0.0"
|
|
|
|
serde = { version = "1.0.75", features = ["derive"] }
|
|
|
|
serde_derive = "1.0.75"
|
|
|
|
decimal = "2.0.4"
|
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
chrono-tz = "0.5"
|
|
|
|
time = "0.1.42"
|
|
|
|
structopt = "0.2.10"
|
|
|
|
rustyline = "5.0.0"
|
2019-10-20 05:11:52 +00:00
|
|
|
tui = "0.5"
|
|
|
|
termion = "1.5"
|
2019-08-25 23:57:07 +00:00
|
|
|
|
|
|
|
[profile.release]
|
2019-10-28 01:25:23 +00:00
|
|
|
lto = true
|