-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
25 lines (21 loc) · 923 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "descriptive_toml_derive"
version = "0.1.1"
edition = "2021"
readme = "README.md"
repository = "https://github.com/CramBL/descriptive_toml_derive"
license = "MIT OR Apache-2.0"
keywords = ["procedural-macro", "derive-macro", "toml-macro"]
description = "Procedural derive macro for serializing a struct into a TOML template with field descriptions that is easily edited and deserialized."
categories = ["rust-patterns", "development-tools"]
authors = ["Marc Beck König <mbkj@tutamail.com>"]
[badges]
maintenance = { status = "actively-developed" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
descriptive_toml_derive_macro = { version = "0.1.0", path = "descriptive_toml_derive_macro" }
[dev-dependencies]
pretty_assertions = "1.4.0"
serde = { version = "1.0.166", features = ["serde_derive"]}
serde_derive = "1.0.166"
toml = "0.7.6"