diff options
-rw-r--r-- | yjit/Cargo.lock | 8 | ||||
-rw-r--r-- | yjit/Cargo.toml | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/yjit/Cargo.lock b/yjit/Cargo.lock index e9a59cb771..efcac30676 100644 --- a/yjit/Cargo.lock +++ b/yjit/Cargo.lock @@ -4,9 +4,9 @@ version = 3 [[package]] name = "capstone" -version = "0.10.0" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66b5d1f14c3539b6ff22fcb602fea5f1c4416148c8b7965a2e74860aa169b7b5" +checksum = "1097e608594dad3bad608295567f757742b883606fe150faf7a9740b849730d8" dependencies = [ "capstone-sys", "libc", @@ -14,9 +14,9 @@ dependencies = [ [[package]] name = "capstone-sys" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df653a22d0ad34b0d91cc92a6289d96e44aac1c9a96250a094c9aeec4a91084f" +checksum = "2e7f651d5ec4c2a2e6c508f2c8032655003cd728ec85663e9796616990e25b5a" dependencies = [ "cc", "libc", diff --git a/yjit/Cargo.toml b/yjit/Cargo.toml index 2194402cdd..f1a80b9c8c 100644 --- a/yjit/Cargo.toml +++ b/yjit/Cargo.toml @@ -15,7 +15,7 @@ crate-type = ["staticlib"] [dependencies] # No required dependencies to simplify build process. TODO: Link to yet to be # written rationale. Optional For development and testing purposes -capstone = { version = "0.10.0", optional = true } +capstone = { version = "0.11.0", optional = true } [features] # NOTE: Development builds select a set of these via configure.ac |