
Implements the Silver Standard conversion on a given list of currency values, defaulting to gold coins. The list of coins are each converted to a base copper coin value, then added together, and finally converted to the given Silver Standard value.
13 lines
No EOL
272 B
TOML
13 lines
No EOL
272 B
TOML
[package]
|
|
name = "sterling"
|
|
version = "0.1.0"
|
|
description = "Converts a given D&D 5e currency value to the Silver Standard."
|
|
authors = ["Zachary Dziura <zcdziura@gmail.com>"]
|
|
|
|
[dependencies]
|
|
clap = "2.31.1"
|
|
lazy_static = "1.0.0"
|
|
regex = "0.2"
|
|
|
|
[profile.release]
|
|
lto = true |