• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "benchmarks"
3version = "0.1.0"
4edition = "2018"
5
6# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
8[dependencies]
9criterion = "0.3.5"
10jemallocator = "0.3.2"
11nom = { path = "../" }
12
13[lib]
14bench = false
15
16[[bench]]
17name = "arithmetic"
18path = "benches/arithmetic.rs"
19harness = false
20
21[[bench]]
22name = "number"
23path = "benches/number.rs"
24harness = false
25
26[[bench]]
27name = "http"
28path = "benches/http.rs"
29harness = false
30
31[[bench]]
32name = "ini"
33path = "benches/ini.rs"
34harness = false
35
36[[bench]]
37name = "ini_str"
38path = "benches/ini_str.rs"
39harness = false
40
41[[bench]]
42name = "json"
43path = "benches/json.rs"
44harness = false
45