diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2025-02-05 02:06:38 +0000 |
---|---|---|
committer | matzbot <[email protected]> | 2025-02-05 11:37:34 +0900 |
commit | afb47a1f10d6ca0dd25eb72002be67cef0d1b932 (patch) | |
tree | 82175d46e932a8049e7a50a3d637a8d9f4e9ad8a | |
parent | 50e48a20c053f8b05c48547b5f5dc1059879867c (diff) |
Bump capstone from 0.12.0 to 0.13.0 in /yjit
Bumps [capstone](https://github.com/capstone-rust/capstone-rs) from 0.12.0 to 0.13.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.12.0...capstone-v0.13.0)
---
updated-dependencies:
- dependency-name: capstone
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <[email protected]>
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/12697
-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 5245a61aff..8b6ac39806 100644 --- a/yjit/Cargo.lock +++ b/yjit/Cargo.lock @@ -4,9 +4,9 @@ version = 3 [[package]] name = "capstone" -version = "0.12.0" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b08ca438d9585a2b216b0c2e88ea51e096286c5f197f7be2526bb515ef775b6c" +checksum = "015ef5d5ca1743e3f94af9509ba6bd2886523cfee46e48d15c2ef5216fd4ac9a" dependencies = [ "capstone-sys", "libc", @@ -14,9 +14,9 @@ dependencies = [ [[package]] name = "capstone-sys" -version = "0.16.0" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe7183271711ffb7c63a6480e4baf480e0140da59eeba9b18fcc8bf3478950e3" +checksum = "2267cb8d16a1e4197863ec4284ffd1aec26fe7e57c58af46b02590a0235809a0" dependencies = [ "cc", "libc", diff --git a/yjit/Cargo.toml b/yjit/Cargo.toml index 715321b6dc..dd5b853e41 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.12.0", optional = true } +capstone = { version = "0.13.0", optional = true } # NOTE: Development builds select a set of these via configure.ac # For debugging, `make V=1` shows exact cargo invocation. |