fix benchmarking dependencies

This commit is contained in:
Simon Gardling 2022-05-03 22:02:20 -04:00
parent 88ee6c7b8d
commit fbfdf44943
3 changed files with 2 additions and 9 deletions

3
Cargo.lock generated
View File

@ -1674,13 +1674,10 @@ dependencies = [
name = "parsing" name = "parsing"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"criterion",
"criterion-macro",
"exmex", "exmex",
"lazy_static", "lazy_static",
"phf", "phf",
"phf_codegen", "phf_codegen",
"pprof",
] ]
[[package]] [[package]]

View File

@ -36,8 +36,6 @@ strip = false
[dependencies] [dependencies]
parsing = { path = "./parsing" } parsing = { path = "./parsing" }
benchmarks = { path = "./benchmarks" }
eframe = { git = "https://github.com/Titaniumtown/egui.git", default-features = false } eframe = { git = "https://github.com/Titaniumtown/egui.git", default-features = false }
egui = { git = "https://github.com/Titaniumtown/egui.git", default-features = false } egui = { git = "https://github.com/Titaniumtown/egui.git", default-features = false }
epaint = { git = "https://github.com/Titaniumtown/egui.git", default-features = false } epaint = { git = "https://github.com/Titaniumtown/egui.git", default-features = false }
@ -56,6 +54,8 @@ static_assertions = "1.1"
phf = "0.10" phf = "0.10"
uuid = { version = "1", features = ["v4", "fast-rng", "js"] } uuid = { version = "1", features = ["v4", "fast-rng", "js"] }
[dev-dependencies]
benchmarks = { path = "./benchmarks" }
[build-dependencies] [build-dependencies]
shadow-rs = "0.11" shadow-rs = "0.11"

View File

@ -16,10 +16,6 @@ exmex = { git = "https://github.com/bertiqwerty/exmex.git", branch = "main", fea
] } ] }
lazy_static = "1.4" lazy_static = "1.4"
pprof = { version = "0.8", features = ["flamegraph"] }
criterion = "0.3"
criterion-macro = "0.3"
[build-dependencies] [build-dependencies]
phf_codegen = "0.10" phf_codegen = "0.10"