1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2018" 14name = "bstr" 15version = "0.2.17" 16authors = ["Andrew Gallant <jamslam@gmail.com>"] 17exclude = ["/.github"] 18description = "A string type that is not required to be valid UTF-8." 19homepage = "https://github.com/BurntSushi/bstr" 20documentation = "https://docs.rs/bstr" 21readme = "README.md" 22keywords = ["string", "str", "byte", "bytes", "text"] 23categories = ["text-processing", "encoding"] 24license = "MIT OR Apache-2.0" 25repository = "https://github.com/BurntSushi/bstr" 26[profile.release] 27debug = true 28 29[lib] 30bench = false 31[dependencies.lazy_static] 32version = "1.2.0" 33optional = true 34 35[dependencies.memchr] 36version = "2.4.0" 37default-features = false 38 39[dependencies.regex-automata] 40version = "0.1.5" 41optional = true 42default-features = false 43 44[dependencies.serde] 45version = "1.0.85" 46optional = true 47default-features = false 48[dev-dependencies.quickcheck] 49version = "1" 50default-features = false 51 52[dev-dependencies.ucd-parse] 53version = "0.1.3" 54 55[dev-dependencies.unicode-segmentation] 56version = "1.2.1" 57 58[features] 59default = ["std", "unicode"] 60serde1 = ["std", "serde1-nostd", "serde/std"] 61serde1-nostd = ["serde"] 62std = ["memchr/std"] 63unicode = ["lazy_static", "regex-automata"] 64