sterling/Cargo.toml
Zachary Dziura 90a3f41c2d Release v1.0.0
This is a monumental release in the development of sterling, culminating
in the finalization of the command-line API and a stabilization of
sterling's features. Woo-hoo!!

Sterling's functionality is very basic: conversion of PHB currencies
into user-defined ones, basic arithmetic operations, and converting
custom currency amounts to the equivalent amount in PHB copper. It's
unlikely that I will be adding any additional features ontop of this
set, as it already provides functionality appropriate enough for most
usecases.

Congrats to me on finally finishing a side-project!
2018-08-06 18:21:48 -04:00

38 lines
No EOL
708 B
TOML

[package]
name = "sterling"
version = "1.0.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"
keywords = ["dnd", "coins", "converter", "currency", "5e"]
[lib]
name = "sterling_ops"
path = "src/lib.rs"
[[bin]]
name = "sterling"
path = "src/main.rs"
[dependencies]
clap = "2.32"
lazysort = "0.2"
lazy_static = "1.0"
regex = "1.0"
separator = "0.3"
serde = "1.0"
serde_derive = "1.0"
serde_yaml = "0.7"
[dev-dependencies]
criterion = "0.2"
[profile.release]
lto = true
panic = "abort"
[[bench]]
name = "bench"
harness = false