hooked/hooked-config/Cargo.toml

30 lines
572 B
TOML
Raw Permalink Normal View History

2022-10-28 13:44:43 +00:00
[package]
name = "hooked-config"
description = "Configuration for Hooked."
documentation = "https://docs.rs/hooked-config"
homepage = "https://hooked.holllo.org"
2022-10-28 13:44:43 +00:00
repository = "https://git.bauke.xyz/Holllo/hooked"
readme = "../README.md"
2022-10-28 13:44:43 +00:00
license = "AGPL-3.0-or-later"
version = "0.1.0"
authors = ["Holllo <helllo@holllo.org>"]
edition = "2021"
[lib]
path = "source/lib.rs"
2024-01-17 17:25:57 +00:00
[lints]
workspace = true
2022-10-28 13:44:43 +00:00
[dependencies]
color-eyre = "0.6.2"
2024-01-18 13:21:43 +00:00
toml = "0.8.8"
2022-10-28 13:44:43 +00:00
[dependencies.serde]
features = ["derive"]
2024-01-18 13:21:43 +00:00
version = "1.0.195"
2022-10-28 13:44:43 +00:00
[dev-dependencies]
2024-01-18 13:21:43 +00:00
insta = "1.34.0"
test-case = "3.3.1"