From 7a52c818fb66e02bdfd02ccf3416338ba370f909 Mon Sep 17 00:00:00 2001 From: Joscha Date: Thu, 27 Jun 2024 21:45:02 +0200 Subject: [PATCH] Remove unused ciborium dependency --- brood/Cargo.lock | 44 -------------------------------------------- brood/Cargo.toml | 1 - 2 files changed, 45 deletions(-) diff --git a/brood/Cargo.lock b/brood/Cargo.lock index 2aae00f..366f081 100644 --- a/brood/Cargo.lock +++ b/brood/Cargo.lock @@ -79,7 +79,6 @@ checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" name = "brood" version = "0.0.0" dependencies = [ - "ciborium", "clap", "csv", "rustc-hash", @@ -100,33 +99,6 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" -[[package]] -name = "ciborium" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" -dependencies = [ - "ciborium-io", - "ciborium-ll", - "serde", -] - -[[package]] -name = "ciborium-io" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" - -[[package]] -name = "ciborium-ll" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" -dependencies = [ - "ciborium-io", - "half", -] - [[package]] name = "clap" version = "4.5.7" @@ -173,12 +145,6 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" -[[package]] -name = "crunchy" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" - [[package]] name = "csv" version = "1.3.0" @@ -222,16 +188,6 @@ dependencies = [ "wasm-bindgen", ] -[[package]] -name = "half" -version = "2.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" -dependencies = [ - "cfg-if", - "crunchy", -] - [[package]] name = "halfbrown" version = "0.2.5" diff --git a/brood/Cargo.toml b/brood/Cargo.toml index 6e4cac1..366e1cd 100644 --- a/brood/Cargo.toml +++ b/brood/Cargo.toml @@ -4,7 +4,6 @@ version = "0.0.0" edition = "2021" [dependencies] -ciborium = "0.2.2" clap = { version = "4.5.7", features = ["derive", "deprecated"] } csv = "1.3.0" rustc-hash = "2.0.0"