# 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" name = "fixedstr" version = "0.5.8" authors = ["Chuck Liang"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "strings of constant maximum size that can be copied and stack allocated using const generics" readme = "README.md" keywords = [ "string", "no-std", ] license = "MIT" repository = "https://github.com/chuckcscccl/fixedstr/" [package.metadata.docs.rs] features = [ "serde", "pub-tstr", "circular-str", "flex-str", "shared-str", "std", ] [lib] name = "fixedstr" path = "src/lib.rs" [dependencies.serde] version = "1" optional = true default-features = false [features] circular-str = [] compressed-str = [] default = [] experimental = [] flex-str = [] fstr = ["std"] no-alloc = [] pub-tstr = ["pub_tstr"] pub_tstr = [] serde = ["dep:serde"] shared-str = [] std = []