1
Fork 0
romantic/Cargo.toml

21 lines
405 B
TOML
Raw Normal View History

2022-04-10 14:11:14 +00:00
# https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "romantic"
description = "Roman numeral toolkit"
2022-09-26 11:08:50 +00:00
repository = "https://git.bauke.xyz/Holllo/romantic"
2022-04-10 14:11:14 +00:00
license = "MIT OR Apache-2.0"
2022-09-26 11:08:50 +00:00
version = "0.1.0"
authors = ["Holllo <helllo@holllo.org>"]
2022-04-10 14:11:14 +00:00
edition = "2021"
[lib]
path = "source/lib.rs"
[dependencies]
num = "0.4.0"
2022-09-26 11:08:50 +00:00
thiserror = "1.0.36"
2022-04-10 14:11:14 +00:00
[dev-dependencies]
2022-09-26 11:08:50 +00:00
test-case = "2.2.1"