-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 878 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 878 Bytes
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
[package]
name = "nom-bufreader"
version = "0.2.0"
edition = "2018"
authors = [ "contact@geoffroycouprie.com" ]
description = "BufReader adapter for nom parsers"
license = "MIT"
keywords = ["parser", "parser-combinators", "parsing", "streaming", "async"]
categories = ["parsing"]
repository = "https://github.com/rust-bakery/nom-bufreader"
readme = "README.md"
documentation = "https://docs.rs/nom-bufreader"
[dependencies]
nom = "7.0.0"
async-trait = { version = "0.1.51", optional = true }
futures = { version = "0.3.16", optional = true }
pin-project-lite = { version = "0.2.7", optional = true }
[dev-dependencies]
async-std = { version = "1.9.0", features = ["attributes"] }
tokio = { version = "1.9.0", features = ["full"] }
tokio-util = { version = "0.6.7", features = ["compat"] }
[features]
default = ["async"]
async = ["futures", "async-trait", "pin-project-lite"]