rpn_rs/Cargo.toml

43 lines
1.1 KiB
TOML
Raw Normal View History

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
2023-04-14 01:34:11 -04:00
[workspace]
members = [
".",
2023-09-18 21:29:24 -04:00
"./rpn_rs_tui/",
2023-04-14 01:34:11 -04:00
"./rpn_rs_gui/",
]
2021-04-24 13:35:39 -04:00
[dependencies]
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"
2023-04-19 23:27:27 -04:00
rust_decimal = { version = "1.29.1", features=["maths"] }
rust_decimal_macros = "1.29.1"
2023-09-18 21:29:24 -04:00
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tracing-appender = "0.2.2"
tracing = "0.1.37"
2023-10-01 14:57:53 -04:00
egui_extras = "0.22.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 = ""