aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2022-12-24 05:15:45 -0800
committeriximeow <me@iximeow.net>2022-12-24 05:16:53 -0800
commitadd2d33de91528c1585e72c5dc091b5dcbf6ee6b (patch)
tree0c8e8be4eacffd6a67e2957eac33c38430511d47
parentc4b66c6fd98aac197bb1f348900709aa3efbd74a (diff)
update old yaxpeax-arch versions in ffi crates to compatible versions
-rw-r--r--CHANGELOG3
-rw-r--r--ffi/long_mode/Cargo.toml2
-rw-r--r--ffi/multiarch/Cargo.toml2
-rw-r--r--ffi/protected_mode/Cargo.toml2
-rw-r--r--ffi/real_mode/Cargo.toml2
5 files changed, 7 insertions, 4 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 2055327..b4deece 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+## unreleased
+* fix incorrect old yaxpeax-arch version selection for ffi crates
+
## 1.1.5
* fix several typos across crate docs - thank you Bruce! (aka github user waywardmonkeys)
* optimizations (mostly code motion) for hot codepaths
diff --git a/ffi/long_mode/Cargo.toml b/ffi/long_mode/Cargo.toml
index 5196c2d..2df8450 100644
--- a/ffi/long_mode/Cargo.toml
+++ b/ffi/long_mode/Cargo.toml
@@ -6,7 +6,7 @@ edition = "2018"
[dependencies]
yaxpeax-x86 = { path = "../../", default-features = false }
-yaxpeax-arch = { version = "0.1.0", default-features = false }
+yaxpeax-arch = { version = "0.2.7", default-features = false }
[lib]
name = "yaxpeax_x86_ffi_long_mode"
diff --git a/ffi/multiarch/Cargo.toml b/ffi/multiarch/Cargo.toml
index 1632996..c15efbb 100644
--- a/ffi/multiarch/Cargo.toml
+++ b/ffi/multiarch/Cargo.toml
@@ -6,7 +6,7 @@ edition = "2018"
[dependencies]
yaxpeax-x86 = { path = "../../", default-features = false }
-yaxpeax-arch = { version = "0.1.0", default-features = false }
+yaxpeax-arch = { version = "0.2.7", default-features = false }
[lib]
name = "yaxpeax_x86_ffi_multiarch"
diff --git a/ffi/protected_mode/Cargo.toml b/ffi/protected_mode/Cargo.toml
index 164c0de..711845e 100644
--- a/ffi/protected_mode/Cargo.toml
+++ b/ffi/protected_mode/Cargo.toml
@@ -6,7 +6,7 @@ edition = "2018"
[dependencies]
yaxpeax-x86 = { path = "../../", default-features = false }
-yaxpeax-arch = { version = "0.1.0", default-features = false }
+yaxpeax-arch = { version = "0.2.7", default-features = false }
[lib]
name = "yaxpeax_x86_ffi_protected_mode"
diff --git a/ffi/real_mode/Cargo.toml b/ffi/real_mode/Cargo.toml
index 3451d59..689472e 100644
--- a/ffi/real_mode/Cargo.toml
+++ b/ffi/real_mode/Cargo.toml
@@ -6,7 +6,7 @@ edition = "2018"
[dependencies]
yaxpeax-x86 = { path = "../../", default-features = false }
-yaxpeax-arch = { version = "0.1.0", default-features = false }
+yaxpeax-arch = { version = "0.2.7", default-features = false }
[lib]
name = "yaxpeax_x86_ffi_real_mode"