summaryrefslogtreecommitdiff
path: root/uri-pack/Cargo.toml
blob: 3c5a69091a9077a6738576e23287b9349b99fbad (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
[package]
name = "uri-pack"
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0-or-later"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
# Error macros
thiserror = "1.0.38"
csv = "1.1.6"

[dev-dependencies]
# Json parser
serde_json = "1.0.91"
# Url parser
url = "2.3.1"
# statistics-driven micro-benchmarks
criterion = "0.4.0"
# Fast insecure random
fastrand = "1.8.0"
# Fuzzing test
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"


[[bench]]
name = "pack"
harness = false