From 48e69b5c2d6f5edca104a30b9e0e8bf9ac32d4cf Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Thu, 1 Dec 2022 14:36:10 +0100 Subject: [PATCH] =?UTF-8?q?chore(cargo):=20remove=20=E2=80=B9anyhow?= =?UTF-8?q?=E2=80=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove ‹anyhow›, since I'm a pepege and want to use ‹color-eyre› that depends on ‹eyre› and is fork of ‹anyhow›. Signed-off-by: Matej Focko --- Cargo.lock | 7 ------- Cargo.toml | 1 - 2 files changed, 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5697110..87264fa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -17,17 +17,10 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" -[[package]] -name = "anyhow" -version = "1.0.66" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6" - [[package]] name = "aoc-2022" version = "0.1.0" dependencies = [ - "anyhow", "color-eyre", "itertools", "md-5", diff --git a/Cargo.toml b/Cargo.toml index e28fb5e..5d2433d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,6 +10,5 @@ md-5 = "0.10.1" itertools = "0.10.2" tracing = "0.1.37" color-eyre = "0.6.2" -anyhow = "1.0.66" thiserror = "1.0.37" tracing-subscriber = { version = "0.3.16", default-features = true, features = ["env-filter", "local-time"] }