-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
81 lines (67 loc) · 1.61 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[package]
name = "cookie-factory"
version = "0.3.3"
authors = ["Geoffroy Couprie <[email protected]>", "Pierre Chifflier <[email protected]>"]
license = "MIT"
repository = "https://github.com/rust-bakery/cookie-factory"
readme = "README.md"
documentation = "http://docs.rs/cookie-factory"
description = "nom inspired serialization library"
categories = ["encoding"]
keywords = ["encoding", "serialization", "nom"]
edition = "2018"
include = [
"Cargo.toml",
"LICENSE",
"README.md",
".gitignore",
"src/*.rs",
"src/combinator/*.rs",
"example/*.rs"
]
[features]
default = ["std", "async"]
std = []
async = ["futures-io", "futures-util"]
[dev-dependencies]
async-std = { version = "1.9.0", features = ["attributes"] }
maplit = "^1.0"
[profile.bench]
debug = true
lto = true
codegen-units = 1
#[[example]]
#name = "cursor"
#required-features = ["std"]
#path = "cursor.rs"
#[[example]]
#name = "json"
#path = "json.rs"
[[example]]
name = "http"
required-features = ["std"]
path = "examples/http.rs"
[[example]]
name = "async_http"
required-features = ["std", "async"]
path = "examples/async_http.rs"
[[example]]
name = "cursor"
required-features = ["std"]
path = "examples/cursor.rs"
[[test]]
name = "http"
required-features = ["std"]
path = "tests/http.rs"
#[[test]]
#name = "pouet"
#path = "pouet.rs"
#[[test]]
#name = "combinators-json"
#path = "combinators-json.rs"
[badges]
travis-ci = { repository = "Geal/cookie-factory" }
maintenance = { status = "actively-developed" }
[dependencies]
futures-io = { version = "0.3.30", optional = true }
futures-util = { version = "0.3.30", optional = true, features = ["io"]}