]> git.proxmox.com Git - rustc.git/blob - src/vendor/memchr/Cargo.toml
New upstream version 1.17.0+dfsg1
[rustc.git] / src / vendor / memchr / Cargo.toml
1 [package]
2 name = "memchr"
3 version = "1.0.1" #:version
4 authors = ["Andrew Gallant <jamslam@gmail.com>", "bluss"]
5 description = "Safe interface to memchr."
6 documentation = "https://docs.rs/memchr/"
7 homepage = "https://github.com/BurntSushi/rust-memchr"
8 repository = "https://github.com/BurntSushi/rust-memchr"
9 readme = "README.md"
10 keywords = ["memchr", "char", "scan", "strchr", "string"]
11 license = "Unlicense/MIT"
12
13 [lib]
14 name = "memchr"
15 bench = false
16
17 [features]
18 default = ["use_std"]
19 use_std = ["libc/use_std"]
20
21 [dependencies]
22 libc = { version = "0.2.18", default-features = false }
23
24 [dev-dependencies]
25 quickcheck = "0.4.1"
26
27 [profile.test]
28 opt-level = 3