2021-04-24 13:35:39 -04:00
|
|
|
[package]
|
|
|
|
name = "rpn_rs"
|
2021-10-02 08:20:23 -04:00
|
|
|
version = "0.6.0"
|
2021-05-19 20:09:09 -04:00
|
|
|
description = "A TUI RPN calculator, similar to Orpie"
|
2021-04-24 13:35:39 -04:00
|
|
|
authors = ["Austen Adler <agadler@austenadler.com>"]
|
|
|
|
edition = "2018"
|
2021-05-08 12:08:57 -04:00
|
|
|
readme = "README.adoc"
|
2021-05-19 20:09:09 -04:00
|
|
|
license = "GPL-3.0-only"
|
2021-05-19 20:47:08 -04:00
|
|
|
# TODO: Add the URL here
|
2021-05-19 20:09:09 -04:00
|
|
|
repository = "https://"
|
2021-05-08 12:08:57 -04:00
|
|
|
keywords = ["tui", "cli", "rpn"]
|
|
|
|
categories = ["command-line-utilities"]
|
2021-04-24 13:35:39 -04:00
|
|
|
|
|
|
|
[dependencies]
|
2021-05-14 17:55:22 -04:00
|
|
|
crossterm = "0.18"
|
|
|
|
tui = { version = "0.14", default-features = false, features = ['crossterm'] }
|
2021-05-03 20:03:56 -04:00
|
|
|
serde = {version = "1.0", features = ["derive"]}
|
2021-06-02 22:16:03 -04:00
|
|
|
# confy = "0.4.0"
|
|
|
|
toml = "0.4.2"
|
2021-10-02 08:44:45 -04:00
|
|
|
lazy_static = "1.4.0"
|
2021-06-02 22:16:03 -04:00
|
|
|
|
|
|
|
[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/"
|
2021-06-02 22:24:28 -04:00
|
|
|
# TOML will not serialize because of ordering issues
|
2021-06-02 22:16:03 -04:00
|
|
|
features = ["yaml_conf"]
|
|
|
|
default-features = false
|
2022-12-25 23:59:30 -05:00
|
|
|
|
|
|
|
[package.metadata.deb]
|
|
|
|
depends = ""
|