1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
[package]
authors = ["Florent FAYOLLE <florent.fayolle69@gmail.com>", "Christopher Durham <cad97@cad97.com>", "Valentin Lorentz <progval+git@progval.net>"]
categories = ["parsing"]
description = "A special input type for nom to locate tokens"
documentation = "https://docs.rs/nom_locate/"
homepage = "https://github.com/fflorent/nom_locate"
keywords = ["nom"]
license = "MIT"
name = "nom_locate"
readme = "README.md"
repository = "https://github.com/fflorent/nom_locate"
version = "4.2.0"
edition = "2018"
[badges.travis-ci]
repository = "fflorent/nom_locate"
[features]
default = ["std"]
std = ["nom/std", "alloc", "memchr/use_std"]
alloc = ["nom/alloc"]
runtime-dispatch-simd = ["bytecount/runtime-dispatch-simd"]
stable-deref-trait = ["stable_deref_trait"]
[dependencies]
bytecount = "^0.6"
memchr = { version = ">=1.0.1, <3.0.0", default-features = false } # ^1.0.0 + ^2.0
nom = { version = "7", default-features = false }
stable_deref_trait = { version = "^1", optional = true, default-features = false }
|