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 = "memchr" 15version = "2.4.1" 16authors = ["Andrew Gallant <jamslam@gmail.com>", "bluss"] 17exclude = ["/bench", "/.github", "/fuzz"] 18description = "Safe interface to memchr." 19homepage = "https://github.com/BurntSushi/memchr" 20documentation = "https://docs.rs/memchr/" 21readme = "README.md" 22keywords = ["memchr", "char", "scan", "strchr", "string"] 23license = "Unlicense/MIT" 24repository = "https://github.com/BurntSushi/memchr" 25[profile.bench] 26debug = true 27 28[profile.release] 29debug = true 30 31[profile.test] 32opt-level = 3 33debug = true 34 35[lib] 36name = "memchr" 37bench = false 38[dependencies.compiler_builtins] 39version = "0.1.2" 40optional = true 41 42[dependencies.core] 43version = "1.0.0" 44optional = true 45package = "rustc-std-workspace-core" 46 47[dependencies.libc] 48version = "0.2.18" 49optional = true 50default-features = false 51[dev-dependencies.quickcheck] 52version = "1.0.3" 53default-features = false 54 55[features] 56default = ["std"] 57rustc-dep-of-std = ["core", "compiler_builtins"] 58std = [] 59use_std = ["std"] 60