2018-03-09 23:05:39 -05:00
|
|
|
[package]
|
|
|
|
name = "sterling"
|
2018-08-07 09:20:31 -04:00
|
|
|
version = "1.0.1"
|
2018-03-09 23:05:39 -05:00
|
|
|
description = "Converts a given D&D 5e currency value to the Silver Standard."
|
|
|
|
authors = ["Zachary Dziura <zcdziura@gmail.com>"]
|
2018-03-09 23:21:32 -05:00
|
|
|
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"]
|
2018-03-09 23:05:39 -05:00
|
|
|
|
2018-08-06 18:01:40 -04:00
|
|
|
[lib]
|
|
|
|
name = "sterling_ops"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "sterling"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2018-03-09 23:05:39 -05:00
|
|
|
[dependencies]
|
2018-08-06 18:01:40 -04:00
|
|
|
clap = "2.32"
|
|
|
|
lazysort = "0.2"
|
2018-05-16 20:58:35 +00:00
|
|
|
lazy_static = "1.0"
|
|
|
|
regex = "1.0"
|
2018-08-06 18:01:40 -04:00
|
|
|
separator = "0.3"
|
2018-03-16 02:22:24 +00:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_yaml = "0.7"
|
2018-03-09 23:05:39 -05:00
|
|
|
|
2018-08-06 18:01:40 -04:00
|
|
|
[dev-dependencies]
|
|
|
|
criterion = "0.2"
|
|
|
|
|
2018-03-09 23:05:39 -05:00
|
|
|
[profile.release]
|
2018-03-16 02:22:24 +00:00
|
|
|
lto = true
|
2018-08-06 18:01:40 -04:00
|
|
|
panic = "abort"
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "bench"
|
|
|
|
harness = false
|