# 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 = "anystr" version = "0.1.1" exclude = [".git*"] description = "An abstraction over string encoding that supports ASCII, UTF-8, UTF-16 and UTF-32" readme = "README.md" keywords = [ "any", "string", "ascii", "widestring", ] categories = [ "no-std", "encoding", "text-processing", ] license = "MIT" repository = "https://github.com/bohdloss/anystr" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "doc_cfg", "--generate-link-to-definition", ] [package.metadata.playground] features = ["std"] [dependencies.ascii] version = "1.1.0" features = [] [dependencies.parse-display] version = "0.9.0" [dependencies.widestring] version = "1.1.0" features = [] [features] alloc = [ "ascii/alloc", "widestring/alloc", ] default = ["std"] std = [ "alloc", "ascii/std", "widestring/std", ] unstable = []