-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (40 loc) · 1.15 KB
/
Cargo.toml
File metadata and controls
47 lines (40 loc) · 1.15 KB
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
[package]
name = "sfv"
version = "0.14.0"
authors = ["Tania Batieva <yalyna.ts@gmail.com>"]
edition = "2021"
license = "MIT/Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/sfv"
description = """Structured Field Values for HTTP parser.
Implementation of RFC 8941 and RFC 9651."""
repository = "https://github.com/undef1nd/sfv"
keywords = ["http-header", "structured-header", ]
exclude = ["tests/**", ".github/*", "benches/**", "fuzz/**"]
rust-version = "1.82"
[dependencies]
arbitrary = { version = "1.4.1", optional = true, features = ["derive"] }
base64 = "0.22.1"
indexmap = { version = "2.7", optional = true }
ref-cast = "1.0.23"
[dev-dependencies]
serde_json = { version = "1.0" }
serde = { version = "1.0", features = ["derive"] }
criterion = "0.5.1"
base32 = "0.5.1"
[lints.clippy]
pedantic = "deny"
[[bench]]
name = "bench"
harness = false
required-features = ["parsed-types"]
[features]
default = ["parsed-types"]
arbitrary = ["dep:arbitrary", "indexmap?/arbitrary"]
parsed-types = ["dep:indexmap"]
[[example]]
name = "priority"
required-features = ["parsed-types"]
[[test]]
name = "specification_tests"
required-features = ["parsed-types"]