From 4a077849f700b593f7b5a89c305c184ade6fa8da Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 16 Dec 2024 12:38:43 +0000 Subject: [PATCH] fix(deps): update rust crate inkwell to 0.5.0 --- Cargo.lock | 10 +++++----- compiler/zrc_codegen/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f7aa2d6..c8b2240 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "aho-corasick" @@ -433,8 +433,8 @@ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5" [[package]] name = "inkwell" -version = "0.2.0" -source = "git+https://github.com/TheDan64/inkwell#7a09ad8a5f3b1fc416f95b5e1c97d33df0ab3f06" +version = "0.5.0" +source = "git+https://github.com/TheDan64/inkwell#8bd9f087c7fedd3897016568184aa8516d6a0abf" dependencies = [ "either", "inkwell_internals", @@ -446,8 +446,8 @@ dependencies = [ [[package]] name = "inkwell_internals" -version = "0.8.0" -source = "git+https://github.com/TheDan64/inkwell#7a09ad8a5f3b1fc416f95b5e1c97d33df0ab3f06" +version = "0.10.0" +source = "git+https://github.com/TheDan64/inkwell#8bd9f087c7fedd3897016568184aa8516d6a0abf" dependencies = [ "proc-macro2", "quote", diff --git a/compiler/zrc_codegen/Cargo.toml b/compiler/zrc_codegen/Cargo.toml index 3ebdb3e..ecdcea1 100644 --- a/compiler/zrc_codegen/Cargo.toml +++ b/compiler/zrc_codegen/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -inkwell = { git = "https://github.com/TheDan64/inkwell", version = "0.2.0", features = ["llvm16-0", "llvm16-0-prefer-static"] } +inkwell = { git = "https://github.com/TheDan64/inkwell", version = "0.5.0", features = ["llvm16-0", "llvm16-0-prefer-static"] } zrc_typeck = { version = "0.1.0", path = "../zrc_typeck" } zrc_utils = { version = "0.1.0", path = "../zrc_utils" }