From 704f3519ef3f0a5fc92dfa5a5f809862c330b6bc Mon Sep 17 00:00:00 2001 From: Jarrod Doyle Date: Sat, 23 Mar 2024 09:35:34 +0000 Subject: [PATCH] Add anyhow --- Cargo.lock | 7 +++++++ Cargo.toml | 1 + 2 files changed, 8 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 24fa1a1..078dc4b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -130,6 +130,12 @@ dependencies = [ "windows-sys 0.52.0", ] +[[package]] +name = "anyhow" +version = "1.0.81" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0952808a6c2afd1aa8947271f3a60f1a6763c7b912d210184c5149b5cf147247" + [[package]] name = "arrayref" version = "0.3.7" @@ -1529,6 +1535,7 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" name = "voxel-rs" version = "0.1.0" dependencies = [ + "anyhow", "bytemuck", "env_logger", "glam", diff --git a/Cargo.toml b/Cargo.toml index bdc54b2..7858be6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,6 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] +anyhow = "1.0.81" bytemuck = { version = "1.15.0", features = ["derive"] } env_logger = "0.11.3" glam = "0.26.0"