diff --git a/README.md b/README.md index ea49025..1576437 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ When importing this crate in your `Cargo.toml`, you will need to specify the LLV ```toml [dependencies] -llvm-plugin = { git = "https://github.com/jamesmth/llvm-plugin-rs", branch = "master", features = ["llvm18-0"] } +llvm-plugin = { version = "0.6", features = ["llvm18-0"] } ``` Supported versions: LLVM 10-18 mapping to a cargo feature flag `llvm*-0` where `*` corresponds to the LLVM major version. diff --git a/llvm-plugin/Cargo.toml b/llvm-plugin/Cargo.toml index 0e07315..794c6d6 100644 --- a/llvm-plugin/Cargo.toml +++ b/llvm-plugin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "llvm-plugin" -version = "0.5.0" +version = "0.6.0" authors = ["James Smith "] categories = ["development-tools::ffi"] description = "A wrapper for easily implementing out-of-source-tree LLVM plugins in Rust." @@ -53,8 +53,8 @@ target-riscv = ["inkwell/target-riscv"] target-all = ["inkwell/target-all"] [dependencies] -inkwell = { git = "https://github.com/TheDan64/inkwell", rev = "5c9f7fc" } -inkwell_internals = { git = "https://github.com/TheDan64/inkwell", rev = "5c9f7fc" } +inkwell = "0.5" +inkwell_internals = "0.10.0" llvm-plugin-macros = { path = "../llvm-plugin-macros", version = "0.2", optional = true } [build-dependencies]