# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.81" name = "ser-write" version = "0.3.0" authors = ["Rafal Michalski "] build = false include = [ "src/", "/README.md", "/LICENSE-MIT", "/LICENSE-APACHE", ] autobins = false autoexamples = false autotests = false autobenches = false description = "Common traits for writer-style serializers and deserializers designed for no_std targets" homepage = "https://github.com/royaltm/rust-ser-write" readme = "README.md" keywords = [ "embedded", "serde", ] categories = ["no-std"] license = "MIT OR Apache-2.0" repository = "https://github.com/royaltm/rust-ser-write" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "ser_write" path = "src/lib.rs" [dependencies.arrayvec] version = "0.7" optional = true default-features = false [dependencies.heapless] version = "0.8" optional = true default-features = false [dependencies.smallvec] version = "1.13" optional = true default-features = false [dependencies.tinyvec] version = "1.8" features = [ "grab_spare_slice", "rustc_1_57", ] optional = true default-features = false [features] alloc = ["tinyvec?/alloc"] arrayvec = ["dep:arrayvec"] default = ["std"] heapless = ["dep:heapless"] smallvec = [ "dep:smallvec", "alloc", ] std = ["tinyvec?/std"] tinyvec = ["dep:tinyvec"]