aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2021-07-03 22:12:57 -0700
committeriximeow <me@iximeow.net>2021-07-03 22:12:57 -0700
commite3203b6ba52cdc620526407c02eb834496ec75cc (patch)
tree04e1c2983704f089f7e081194c956d173541fd49
parent0cb220f953c5cd8f0ecfc1ac3480d35ed7481c96 (diff)
bump yaxpeax-arch to 0.1.0 and add badges
-rw-r--r--Cargo.toml2
-rw-r--r--README.md3
2 files changed, 4 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 637ffe9..8a82577 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -9,7 +9,7 @@ description = "x86 decoders for the yaxpeax project"
readme = "README.md"
[dependencies]
-yaxpeax-arch = { version = "0.0.5", default-features = false, features = [] }
+yaxpeax-arch = { version = "0.1.0", default-features = false, features = [] }
"num-traits" = { version = "0.2", default-features = false }
"serde" = { version = "1.0", optional = true }
"serde_json" = { version = "1.0", optional = true }
diff --git a/README.md b/README.md
index c03e228..f26633b 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,8 @@
## yaxpeax-x86
+[![crate](https://img.shields.io/crates/v/yaxpeax-x86.svg?logo=rust)](https://crates.io/crates/yaxpeax-x86)
+[![documentation](https://docs.rs/yaxpeax-x86/badge.svg)](https://docs.rs/yaxpeax-x86)
+
x86 decoders implemented as part of the yaxpeax project, implementing traits provided by `yaxpeax-arch`.
Rust users of this library will either want to use the [quick and dirty APIs], or more generic decode interfaces from `yaxpeax-arch` - appropriate when mixing `yaxpeax-x86` usage with other `yaxpeax` decoders, such as `yaxpeax-arm`. examples of both styles are provided [in the documentation](link).