summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: dc8e3cbd05740fbf736798076b2694d84096548f (plain)
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
[package]
authors = ["Sam Scott <sam@osohq.com>"]
edition = "2018"
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 = "0.8.2"

[badges]

[badges.travis-ci]
repository = "samscott89/serde_qs"

[dependencies]
actix-web = { version = "3.3", optional = true }
actix-web2 = { package = "actix-web", version = "2.0.0", optional = true }
futures = { version = "0.3.8", optional = true } 
percent-encoding = "2.1.0"
serde = "1.0.118"
thiserror = "1.0.22"
tracing = { version = "0.1", optional = true }
warp-framework = { package = "warp", version = "0.3", default-features = false, optional = true }

[dev-dependencies]
csv = "1.1.5"
rand = "0.7.3"
serde_derive = "1.0.118"
serde_urlencoded = "0.7.0"

[features]
default = []
actix = ["actix-web", "futures"]
actix2 = ["actix-web2", "futures"]
warp = [ "futures", "tracing", "warp-framework" ]

[package.metadata.docs.rs]
features = [ "actix", "warp" ]