From 66a05adefcfe46e3ac248811c6b35b36cac4d050 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Wed, 11 May 2022 13:11:34 -0400 Subject: [PATCH] update Cargo.toml --- Cargo.lock | 21 --------------------- Cargo.toml | 9 ++++----- 2 files changed, 4 insertions(+), 26 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 41912fe..3969bdb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -355,16 +355,6 @@ dependencies = [ "memchr", ] -[[package]] -name = "command-run" -version = "1.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ffd9f926d17735f66514f1a8cb0904f4b0f66cdc3549a9f185c5fc472642ab6e" -dependencies = [ - "log", - "os_pipe", -] - [[package]] name = "console_error_panic_hook" version = "0.1.7" @@ -1572,16 +1562,6 @@ version = "11.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" -[[package]] -name = "os_pipe" -version = "0.9.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb233f06c2307e1f5ce2ecad9f8121cffbbee2c95428f44ea85222e460d0d213" -dependencies = [ - "libc", - "winapi", -] - [[package]] name = "osmesa-sys" version = "0.1.2" @@ -2783,7 +2763,6 @@ dependencies = [ "benchmarks", "bincode", "cfg-if 1.0.0", - "command-run", "console_error_panic_hook", "const_format", "eframe", diff --git a/Cargo.toml b/Cargo.toml index a24454b..8653655 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -53,7 +53,7 @@ tracing = "0.1" itertools = "0.10" static_assertions = "1.1" uuid = { version = "1", features = ["v4", "fast-rng", "js"] } -bincode = "1.3.3" +bincode = "1.3" serde = "1" @@ -62,14 +62,13 @@ benchmarks = { path = "./benchmarks" } [build-dependencies] shadow-rs = "0.11" -command-run = "1.1" epaint = { git = "https://github.com/Titaniumtown/egui.git", default-features = false, features = [ "serde", ] } -bincode = "1.3.3" +bincode = "1.3" serde = "1" -serde_json = "1.0" -zstd = "0.11.1+zstd.1.5.2" +serde_json = "1" +zstd = "0.11" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] instant = "0.1"