forked from samscott89/serde_qs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
40 lines (34 loc) · 990 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
30
31
32
33
34
35
36
37
38
39
40
[package]
authors = ["Sam Scott <[email protected]>"]
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.5.1"
[badges]
[badges.travis-ci]
repository = "samscott89/serde_qs"
[dependencies]
actix-web = { package = "actix-web", version = "1.0.0", optional = true }
actix-web2 = { package = "actix-web", version = "2.0.0", optional = true }
futures = { version = "0.3", optional = true }
data-encoding = "2.1.2"
error-chain = "0.12.0"
percent-encoding = "1.0.1"
serde = "1.0.85"
[dev-dependencies]
csv = "1.0.5"
rand = "0.6.4"
serde_derive = "1.0.85"
serde_urlencoded = "0.5.4"
[features]
default = []
actix = ["actix-web"]
actix2 = ["actix-web2", "futures"]
[package.metadata.docs.rs]
features = [ "actix" ]
all-features = true