alioth/serde-aco/Cargo.toml
Changyuan Lyu 54549ce6b6 feat(aco): add trait Help and the derive macro
Trait `Help` returns a description of a type. It is used to generate
the help message for the command line interface.

The derive macro implements `Help` for enums and structs and
includes inline documentation in the description.

Signed-off-by: Changyuan Lyu <changyuanl@google.com>
2024-07-28 13:45:39 -07:00

17 lines
369 B
TOML

[package]
name = "serde-aco"
version.workspace = true
edition.workspace = true
description = "Serialize/deserialize Alioth command line options"
authors.workspace = true
license.workspace = true
repository.workspace = true
[dependencies]
serde.workspace = true
serde-aco-derive.workspace = true
[dev-dependencies]
assert_matches.workspace = true
serde_bytes = "0.11"