24 lines
507 B
TOML
24 lines
507 B
TOML
|
[package]
|
||
|
name = "aquatic_toml_config"
|
||
|
description = "Serialize toml with comments"
|
||
|
keywords = ["toml"]
|
||
|
version.workspace = true
|
||
|
authors.workspace = true
|
||
|
edition.workspace = true
|
||
|
license.workspace = true
|
||
|
repository.workspace = true
|
||
|
readme.workspace = true
|
||
|
rust-version.workspace = true
|
||
|
|
||
|
[lib]
|
||
|
name = "aquatic_toml_config"
|
||
|
|
||
|
[dependencies]
|
||
|
toml = "0.5"
|
||
|
aquatic_toml_config_derive.workspace = true
|
||
|
|
||
|
[dev-dependencies]
|
||
|
serde = { version = "1.0", features = ["derive"] }
|
||
|
quickcheck = "1"
|
||
|
quickcheck_macros = "1"
|