rpn_rs/Cargo.toml
2021-10-12 08:20:24 -04:00

28 lines
813 B
TOML

[package]
name = "rpn_rs"
version = "0.6.0"
description = "A TUI RPN calculator, similar to Orpie"
authors = ["Austen Adler <agadler@austenadler.com>"]
edition = "2018"
readme = "README.adoc"
license = "GPL-3.0-only"
# TODO: Add the URL here
repository = "https://"
keywords = ["tui", "cli", "rpn"]
categories = ["command-line-utilities"]
[dependencies]
crossterm = "0.18"
tui = { version = "0.14", default-features = false, features = ['crossterm'] }
serde = {version = "1.0", features = ["derive"]}
# confy = "0.4.0"
toml = "0.4.2"
[dependencies.confy]
# TODO: Update this to v0.5.0 when it finally comes out -- for now, use latest git master
# version = "0.4.0"
git = "https://github.com/rust-cli/confy/"
# TOML will not serialize because of ordering issues
features = ["yaml_conf"]
default-features = false