[package] name = "serde-map-to-array" version = "1.1.1" description = "Helpers to support converting a map to a sequence of named key-value pairs for human-readable encoding formats" license = "MIT OR Apache-2.0" edition = "2021" rust-version = "1.56" # update rust-msrv in CI and msrv badge in README when this changes authors = ["Fraser Hutchison "] categories = ["encoding", "no-std"] keywords = ["serde", "serialization", "deserialization", "no_std"] readme = "README.md" documentation = "https://docs.rs/serde-map-to-array" repository = "https://gitlab.com/Fraser999/serde-map-to-array" [features] # Provide support for HashMaps. std = ["serde/std"] # Provide support for JSON schema documentation. json-schema = ["schemars", "std"] [dependencies] serde = { version = "1.0.176", default-features = false, features = ["alloc"] } schemars = { version = "0.8.12", optional = true } [dev-dependencies] bincode = "1.3.3" hash_hasher = "2.0.3" serde = { version = "1.0.176", default-features = true, features = ["derive"] } serde_json = { version = "1.0.104", default-features = false, features = ["alloc"] } toml = "0" [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"]