diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2024-01-22 14:44:00 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2024-01-22 14:44:00 -0800 |
commit | a64e26c5d5363719c91e5db2a0c9946c7b2e85f9 (patch) | |
tree | 9b80c3ef7e60ba5f451d59936e5e7cde60e84897 | |
parent | 28fc7fa852e6543cdd74c66c1130348085d7f241 (diff) |
Bump capstone from 0.10.0 to 0.11.0 in /yjit (#9653)
Bumps [capstone](https://github.com/capstone-rust/capstone-rs) from 0.10.0 to 0.11.0.
- [Release notes](https://github.com/capstone-rust/capstone-rs/releases)
- [Changelog](https://github.com/capstone-rust/capstone-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/capstone-rust/capstone-rs/compare/capstone-v0.10.0...capstone-v0.11.0)
---
updated-dependencies:
- dependency-name: capstone
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-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 |