diff --git a/Cargo.lock b/Cargo.lock index aa82cbd..096fbda 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1674,13 +1674,10 @@ dependencies = [ name = "parsing" version = "0.1.0" dependencies = [ - "criterion", - "criterion-macro", "exmex", "lazy_static", "phf", "phf_codegen", - "pprof", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index e8ca4b4..ed58b43 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,8 +36,6 @@ strip = false [dependencies] parsing = { path = "./parsing" } -benchmarks = { path = "./benchmarks" } - eframe = { 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 } @@ -56,6 +54,8 @@ static_assertions = "1.1" phf = "0.10" uuid = { version = "1", features = ["v4", "fast-rng", "js"] } +[dev-dependencies] +benchmarks = { path = "./benchmarks" } [build-dependencies] shadow-rs = "0.11" diff --git a/parsing/Cargo.toml b/parsing/Cargo.toml index 0bf041e..d20f847 100644 --- a/parsing/Cargo.toml +++ b/parsing/Cargo.toml @@ -16,10 +16,6 @@ exmex = { git = "https://github.com/bertiqwerty/exmex.git", branch = "main", fea ] } lazy_static = "1.4" -pprof = { version = "0.8", features = ["flamegraph"] } -criterion = "0.3" -criterion-macro = "0.3" - [build-dependencies] phf_codegen = "0.10"