[go: up one dir, main page]

File: Cargo.toml

package info (click to toggle)
rust-serde-qs 0.13.0-6
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 344 kB
  • sloc: makefile: 2; sh: 1
file content (42 lines) | stat: -rw-r--r-- 1,069 bytes parent folder | download
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.13.0"
rust-version = "1.36"

[dependencies]
actix-web4 = { version = "4.0", optional = true, package = "actix-web", default-features = false }
futures = { version = "0.3", optional = true }
percent-encoding = "2.1"
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0"

[dev-dependencies]
chrono = { version = "0.4", features = ["serde"] }
csv = "1.1"
rand = "0.8"
serde_derive = "1.0"
serde_urlencoded = "0.7"
serde_with = ">= 2.0, <= 3"

[features]
default = []
actix4 = ["actix-web4", "futures"]
# deprecated feature -- used to return a warning
actix2 = []
actix = []

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

[[example]]
name = "csv_vectors"
test = true