-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathCargo.toml
More file actions
78 lines (70 loc) · 2.36 KB
/
Cargo.toml
File metadata and controls
78 lines (70 loc) · 2.36 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
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
[package]
authors = ["Sam Scott <sam@osohq.com>"]
edition = "2024"
categories = ["encoding", "web-programming"]
description = "Querystrings for Serde"
documentation = "https://docs.rs/serde_qs"
keywords = ["serde", "serialization", "querystring"]
license = "MIT/Apache-2.0"
name = "serde_qs"
repository = "https://github.com/samscott89/serde_qs"
readme = "README.md"
version = "1.1.1"
rust-version = "1.85"
[dependencies]
actix-web3 = { version = "3.3", optional = true, package = "actix-web", default-features = false }
actix-web4 = { version = "4.0", optional = true, package = "actix-web", default-features = false }
axum-framework = { package = "axum", version = "0.8", default-features = false, optional = true }
futures-util = { version = "0.3", optional = true, default-features = false }
indexmap = { version = "2.2", optional = true, features = ["serde"] }
itoa = "1.0.15"
percent-encoding = "2.1"
ryu = "1.0.20"
serde = { version = "1.0" }
tracing = { version = "0.1", optional = true }
warp-framework = { package = "warp", version = "0.4", default-features = false, optional = true }
# used in benchmarks
criterion = { version = "0.5", features = ["html_reports"], optional = true }
[dev-dependencies]
chrono = { version = "0.4", features = ["serde"] }
csv = "=1.2.2"
futures = "0.3"
insta = { version = "1.4", features = ["serde"] }
pretty_assertions = "1.0"
rand = "0.9"
serde = { version = "1.0", features = ["rc", "derive"] }
serde_bytes = "0.11"
serde_json = { version = "1.0" }
serde_urlencoded = "0.7"
serde_with = "3.0"
warp-framework = { package = "warp", version = "0.4", default-features = false, features = [
"test",
] }
[features]
default = []
default_to_form_encoding = []
debug_parsed = []
actix4 = ["actix-web4", "dep:futures-util"]
actix3 = ["actix-web3", "dep:futures-util"]
# deprecated feature -- used to return a descriptive compile error
actix2 = []
actix = []
warp = ["tracing", "warp-framework"]
axum = ["axum-framework"]
indexmap = ["dep:indexmap"]
benchmarks = ["dep:criterion"]
# does nothing, only exists for backwards compatibility for any users that
# were enabling this no-op feature previously
futures = []
[package.metadata.docs.rs]
features = ["actix4", "warp", "axum"]
[[example]]
name = "csv_vectors"
test = true
[[bench]]
name = "serde_qs_benchmarks"
harness = false
required-features = ["benchmarks"]
[profile.profiling]
inherits = "release"
debug = true