sterling/Cargo.toml

21 lines
500 B
TOML
Raw Normal View History

[package]
name = "sterling"
2018-03-16 02:22:24 +00:00
version = "0.2.0"
description = "Converts a given D&D 5e currency value to the Silver Standard."
authors = ["Zachary Dziura <zcdziura@gmail.com>"]
readme = "README.md"
license = "Unlicense/MIT"
repository = "https://gitlab.com/zcdziura/sterling"
2018-03-10 10:16:49 -05:00
keywords = ["dnd", "coins", "converter", "currency", "5e"]
[dependencies]
clap = "2.31.1"
lazy_static = "1.0.0"
regex = "0.2"
2018-03-16 02:22:24 +00:00
serde = "1.0"
serde_derive = "1.0"
serde_yaml = "0.7"
[profile.release]
2018-03-16 02:22:24 +00:00
lto = true
panic = "abort"