Cargo.toml (557B)
1 [package] 2 name = "uri-pack" 3 version = "0.1.0" 4 edition.workspace = true 5 authors.workspace = true 6 homepage.workspace = true 7 repository.workspace = true 8 license-file.workspace = true 9 10 [dependencies] 11 # Error macros 12 thiserror.workspace = true 13 csv = "1.3.0" 14 15 [dev-dependencies] 16 # Json parser 17 serde_json.workspace = true 18 # statistics-driven micro-benchmarks 19 criterion.workspace = true 20 # Fast insecure random 21 fastrand = "2.0.1" 22 # Fuzzing test 23 quickcheck = "1.0.3" 24 quickcheck_macros = "1.0.0" 25 26 27 [[bench]] 28 name = "pack" 29 harness = false 30