22 lines
536 B
TOML
22 lines
536 B
TOML
|
[package]
|
||
|
name = "memchr"
|
||
|
version = "0.1.11" #:version
|
||
|
authors = ["Andrew Gallant <jamslam@gmail.com>", "bluss"]
|
||
|
description = "Safe interface to memchr."
|
||
|
documentation = "http://burntsushi.net/rustdoc/memchr/"
|
||
|
homepage = "https://github.com/BurntSushi/rust-memchr"
|
||
|
repository = "https://github.com/BurntSushi/rust-memchr"
|
||
|
readme = "README.md"
|
||
|
keywords = ["memchr", "char", "scan", "strchr", "string"]
|
||
|
license = "Unlicense/MIT"
|
||
|
|
||
|
[lib]
|
||
|
name = "memchr"
|
||
|
bench = false
|
||
|
|
||
|
[dependencies]
|
||
|
libc = "0.2.4"
|
||
|
|
||
|
[dev-dependencies]
|
||
|
quickcheck = "0.2"
|