rpn_rs/Cargo.toml
2021-05-08 16:52:33 -04:00

27 lines
691 B
TOML

[package]
name = "rpn_rs"
version = "0.1.0"
authors = ["Austen Adler <agadler@austenadler.com>"]
edition = "2018"
readme = "README.adoc"
keywords = ["tui", "cli", "rpn"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tui = "0.14"
termion = "1.5"
serde = {version = "1.0", features = ["derive"]}
confy = "0.4.0"
# 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"