From 3cc4e5fea66f3048a9d037f8a3564d05208afa71 Mon Sep 17 00:00:00 2001 From: Folkert Date: Thu, 22 Apr 2021 12:43:26 +0200 Subject: [PATCH] bump inkwell version --- Cargo.lock | 6 +++--- cli/Cargo.toml | 2 +- compiler/build/Cargo.toml | 2 +- compiler/gen/Cargo.toml | 2 +- compiler/test_gen/Cargo.toml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3f45501c79..76ce700a84 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1535,7 +1535,7 @@ dependencies = [ [[package]] name = "inkwell" version = "0.1.0" -source = "git+https://github.com/rtfeldman/inkwell?tag=llvm10-0.release3#57e9f00d98fc99486e737c314e56a59498c5dbbb" +source = "git+https://github.com/rtfeldman/inkwell?tag=llvm10-0.release4#9ae45f072645165885b2f347a4c0cc5ce9e22c80" dependencies = [ "either", "inkwell_internals", @@ -1548,8 +1548,8 @@ dependencies = [ [[package]] name = "inkwell_internals" -version = "0.2.0" -source = "git+https://github.com/rtfeldman/inkwell?tag=llvm10-0.release3#57e9f00d98fc99486e737c314e56a59498c5dbbb" +version = "0.3.0" +source = "git+https://github.com/rtfeldman/inkwell?tag=llvm10-0.release4#9ae45f072645165885b2f347a4c0cc5ce9e22c80" dependencies = [ "proc-macro2 1.0.26", "quote 1.0.9", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 45c27c88ce..732f612b19 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -79,7 +79,7 @@ libloading = "0.6" # commit of TheDan64/inkwell, push a new tag which points to the latest commit, # change the tag value in this Cargo.toml to point to that tag, and `cargo update`. # This way, GitHub Actions works and nobody's builds get broken. -inkwell = { git = "https://github.com/rtfeldman/inkwell", tag = "llvm10-0.release3" } +inkwell = { git = "https://github.com/rtfeldman/inkwell", tag = "llvm10-0.release4", features = [ "llvm10-0" ] } target-lexicon = "0.10" tempfile = "3.1.0" diff --git a/compiler/build/Cargo.toml b/compiler/build/Cargo.toml index 810ed7f759..cffdced6b5 100644 --- a/compiler/build/Cargo.toml +++ b/compiler/build/Cargo.toml @@ -45,7 +45,7 @@ serde_json = "1.0" # commit of TheDan64/inkwell, push a new tag which points to the latest commit, # change the tag value in this Cargo.toml to point to that tag, and `cargo update`. # This way, GitHub Actions works and nobody's builds get broken. -inkwell = { git = "https://github.com/rtfeldman/inkwell", tag = "llvm10-0.release3" } +inkwell = { git = "https://github.com/rtfeldman/inkwell", tag = "llvm10-0.release4", features = [ "llvm10-0" ] } target-lexicon = "0.10" [dev-dependencies] diff --git a/compiler/gen/Cargo.toml b/compiler/gen/Cargo.toml index cd1420de3f..766da100be 100644 --- a/compiler/gen/Cargo.toml +++ b/compiler/gen/Cargo.toml @@ -37,7 +37,7 @@ either = "1.6.1" # commit of TheDan64/inkwell, push a new tag which points to the latest commit, # change the tag value in this Cargo.toml to point to that tag, and `cargo update`. # This way, GitHub Actions works and nobody's builds get broken. -inkwell = { git = "https://github.com/rtfeldman/inkwell", tag = "llvm10-0.release3" } +inkwell = { git = "https://github.com/rtfeldman/inkwell", tag = "llvm10-0.release4", features = [ "llvm10-0" ] } target-lexicon = "0.10" [dev-dependencies] diff --git a/compiler/test_gen/Cargo.toml b/compiler/test_gen/Cargo.toml index 2a2d57c5e1..ed7b75b577 100644 --- a/compiler/test_gen/Cargo.toml +++ b/compiler/test_gen/Cargo.toml @@ -47,7 +47,7 @@ libc = "0.2" # commit of TheDan64/inkwell, push a new tag which points to the latest commit, # change the tag value in this Cargo.toml to point to that tag, and `cargo update`. # This way, GitHub Actions works and nobody's builds get broken. -inkwell = { git = "https://github.com/rtfeldman/inkwell", tag = "llvm10-0.release3" } +inkwell = { git = "https://github.com/rtfeldman/inkwell", tag = "llvm10-0.release4", features = [ "llvm10-0" ] } target-lexicon = "0.10" libloading = "0.6"