43 lines
1.1 KiB
TOML
43 lines
1.1 KiB
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"]
|
|
|
|
[workspace]
|
|
members = [
|
|
".",
|
|
"./rpn_rs_tui/",
|
|
"./rpn_rs_gui/",
|
|
]
|
|
|
|
[dependencies]
|
|
serde = {version = "1.0", features = ["derive"]}
|
|
# confy = "0.4.0"
|
|
toml = "0.4.2"
|
|
lazy_static = "1.4.0"
|
|
rust_decimal = { version = "1.29.1", features=["maths"] }
|
|
rust_decimal_macros = "1.29.1"
|
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|
|
tracing-appender = "0.2.2"
|
|
tracing = "0.1.37"
|
|
egui_extras = "0.22.0"
|
|
|
|
[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
|
|
|
|
[package.metadata.deb]
|
|
depends = ""
|