mirror of
https://gitee.com/openharmony/third_party_rust_nom
synced 2024-11-27 09:40:54 +00:00
27 lines
593 B
TOML
27 lines
593 B
TOML
[package]
|
|
|
|
name = "nom"
|
|
version = "0.3.11"
|
|
authors = [ "contact@geoffroycouprie.com" ]
|
|
description = "A byte oriented, zero copy, parser combinators library"
|
|
license = "MIT"
|
|
repository = "https://github.com/Geal/nom"
|
|
readme = "README.md"
|
|
documentation = "http://rust.unhandledexpression.com/nom/"
|
|
keywords = ["parser", "parser-combinators", "parsing", "streaming", "bit"]
|
|
|
|
[features]
|
|
core = []
|
|
nightly = []
|
|
regexp = ["regex"]
|
|
regexp_macros = ["regexp", "regex_macros"]
|
|
|
|
[dependencies.regex]
|
|
version = "^0.1.41"
|
|
optional = true
|
|
|
|
[dependencies.regex_macros]
|
|
version = "^0.1.21"
|
|
optional = true
|
|
|