-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (24 loc) · 745 Bytes
/
Cargo.toml
File metadata and controls
29 lines (24 loc) · 745 Bytes
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
[package]
name = "nom_bencode"
version = "0.2.0"
authors = ["Edgar <git@edgarluque.com>"]
description = "A bencode parser written with nom."
repository = "https://github.com/edg-l/nom-bencode/"
license = "MIT OR Apache-2.0"
keywords = ["bencode", "parser", "nom"]
categories = ["parser-implementations"]
documentation = "https://docs.rs/nom_bencode"
readme = "README.md"
edition = "2021"
exclude = ["./test-assets/*"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nom = "7.1.3"
thiserror = "1.0.40"
[dev-dependencies]
assert_matches = "1.5.0"
criterion = { version = "0.4.0", features = ["html_reports"] }
proptest = "1.1.0"
[[bench]]
name = "bencode_bench"
harness = false