forked from undef1nd/sfv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (25 loc) · 786 Bytes
/
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
[package]
name = "sfv"
version = "0.9.4"
authors = ["Tania Batieva <[email protected]>"]
edition = "2018"
license = "MIT/Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/sfv"
description = """Structured Field Values for HTTP parser.
Implementation of RFC 8941."""
repository = "https://github.com/undef1nd/sfv"
keywords = ["http-header", "structured-header", ]
exclude = ["tests/**", ".github/*"]
[dependencies]
indexmap = "2"
rust_decimal = { version = "1.20.0", default-features = false }
data-encoding = "2.3.2"
[dev-dependencies]
rust_decimal = { version = "1.20.0", default-features = false, features = ["std"] }
serde_json = { version = "1.0" }
serde = { version = "1.0", features = ["derive"] }
criterion = "0.4.0"
[[bench]]
name = "bench"
harness = false