-
Notifications
You must be signed in to change notification settings - Fork 38
/
Cargo.toml
31 lines (28 loc) · 1.05 KB
/
Cargo.toml
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
30
31
[package]
authors = ["Florent FAYOLLE <[email protected]>", "Christopher Durham <[email protected]>", "Valentin Lorentz <[email protected]>"]
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"
rust-version = "1.63.0"
[badges.travis-ci]
repository = "fflorent/nom_locate"
[features]
default = ["std"]
std = ["nom/std", "alloc", "memchr/use_std"]
alloc = ["nom/alloc"]
generic-simd = ["bytecount/generic-simd"]
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 }