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:11:28 +00:00
|
|
|
version = "0.1.1"
|
2022-09-26 11:08:50 +00:00
|
|
|
authors = ["Holllo <helllo@holllo.org>"]
|
2022-04-10 14:11:14 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "source/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-25 12:14:44 +00:00
|
|
|
num = "0.4.1"
|
|
|
|
thiserror = "1.0.56"
|
2022-04-10 14:11:14 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-01-25 12:14:44 +00:00
|
|
|
test-case = "3.3.1"
|