[package]
edition = "2024"
rust-version = "1.95.0"
name = "tmyc"
version = "0.1.2"
authors = ["recrypted <git@recrypted.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Implementation of serde serialization and deserialization from YAML data format"
documentation = "https://docs.rs/tmyc/"
readme = "README.md"
keywords = [
"derive",
"serde",
"serialization",
"yaml",
]
categories = [
"encoding",
"parser-implementations",
"parsing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/seq-rs/tmyc"
[lib]
name = "tmyc"
path = "src/lib.rs"
[[example]]
name = "parse_kubectl_stream"
path = "examples/parse_kubectl_stream.rs"
[[example]]
name = "struct_to_yaml"
path = "examples/struct_to_yaml.rs"
[[test]]
name = "fixtures_roundtrip"
path = "tests/fixtures_roundtrip.rs"
[[test]]
name = "fixtures_smoke"
path = "tests/fixtures_smoke.rs"
[[test]]
name = "parsing"
path = "tests/parsing.rs"
[[test]]
name = "resolve"
path = "tests/resolve.rs"
[[test]]
name = "serde_roundtrip"
path = "tests/serde_roundtrip.rs"
[dependencies.serde]
version = "1"
features = ["derive"]