rpn_rs/Cargo.toml

27 lines
691 B
TOML
Raw Normal View History

2021-04-24 13:35:39 -04:00
[package]
name = "rpn_rs"
2021-05-12 23:32:37 -04:00
version = "0.2.0"
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"
keywords = ["tui", "cli", "rpn"]
categories = ["command-line-utilities"]
2021-04-24 13:35:39 -04:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tui = "0.14"
termion = "1.5"
2021-05-03 20:03:56 -04:00
serde = {version = "1.0", features = ["derive"]}
confy = "0.4.0"
2021-05-08 16:52:33 -04:00
# TODO: cross compilation
# [target.arm-unknown-linux-gnueabihf]
# linker = "arm-linux-gnueabihf-gcc"
# [target.armv7-unknown-linux-musleabi]
# linker = "armv7-unknown-linux-musleabi-gcc"
# [target.aarch64-unknown-linux-musl]
# linker = "aarch64-unknown-linux-musl-gcc"