22 lines
535 B
TOML
22 lines
535 B
TOML
[package]
|
|
name = "cryptools"
|
|
version = "0.6.0"
|
|
authors = ["scoobybejesus <scoobybejesus@users.noreply.github.com>"]
|
|
edition = "2018"
|
|
description = "This is a command-line utility for processing cryptocurrency transactions into 'lots' and 'movements'."
|
|
|
|
[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"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
|