dtolnay / serde-yaml

Strongly typed YAML library for Rust
Apache License 2.0
965 stars 164 forks source link

Remove seed module and functions #290

Closed dtolnay closed 2 years ago

dtolnay commented 2 years ago

No longer necessary since the Deserializer has been made public. For example serde_yaml::from_str_seed(yaml, seed) is just seed.deserialize(serde_yaml::Deserializer::from_str(yaml)).