combine 3.0.0-beta.1

Fast parser combinators on arbitrary streams with zero-copy support.
Documentation
# 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 believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
name = "combine"
version = "3.0.0-beta.1"
authors = ["Markus Westerlind <marwes91@gmail.com>"]
description = "Fast parser combinators on arbitrary streams with zero-copy support."
documentation = "https://docs.rs/combine"
readme = "README.md"
keywords = ["parser", "parsing", "combinators", "ll"]
categories = ["parsing", "no-std"]
license = "MIT"
repository = "https://github.com/Marwes/combine"
[package.metadata.docs.rs]
features = ["doc"]
[profile.bench]
lto = true
codegen-units = 1

[lib]
name = "combine"
path = "src/lib.rs"

[[example]]
name = "async"
required-features = ["std"]

[[example]]
name = "date"

[[example]]
name = "number"

[[example]]
name = "readme"

[[example]]
name = "ini"

[[bench]]
name = "json"
harness = false

[[bench]]
name = "http"
harness = false

[[bench]]
name = "mp4"
harness = false
required-features = ["mp4"]
[dependencies.ascii]
version = "0.7.0"

[dependencies.byteorder]
version = "1.1.0"

[dependencies.either]
version = "1"

[dependencies.memchr]
version = "2"
default-features = false

[dependencies.regex]
version = "0.2.0"
optional = true

[dependencies.unreachable]
version = "1.0.0"
[dev-dependencies.bencher]
version = "0.1.3"

[dev-dependencies.bytes]
version = "0.4"

[dev-dependencies.futures]
version = "0.1"

[dev-dependencies.lazy_static]
version = "0.2.8"

[dev-dependencies.partial-io]
version = "0.3"
features = ["tokio", "quickcheck"]

[dev-dependencies.quick-error]
version = "1.0"

[dev-dependencies.quickcheck]
version = "0.6"

[dev-dependencies.tokio-io]
version = "0.1"

[features]
default = ["std"]
doc = ["regex"]
mp4 = []
std = ["memchr/use_std"]