Skip to content

Commit 64ced19

Browse files
committed
documentation update, dependencies versions changes, category slug fix
1 parent 00d836b commit 64ced19

File tree

2 files changed

+6
-13
lines changed

2 files changed

+6
-13
lines changed

Cargo.toml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hyperpom"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["lyte <hyperpom@impalabs.fr>"]
55
edition = "2021"
66
description = "AArch64 fuzzing library based on the Apple Silicon hypervisor"
@@ -9,22 +9,16 @@ readme = "README.md"
99
repository = "https://github.com/impalabs/hyperpom"
1010
license = "GPL-3.0-or-later"
1111
keywords = ["fuzzing", "hypervisor", "apple", "security", "aarch64"]
12-
categories = ["virtualization", "hardware-support", "testing"]
12+
categories = ["virtualization", "hardware-support", "development-tools::testing"]
1313

1414
[dependencies]
15-
applevisor = "0.1.1"
15+
applevisor = "0.1.2"
1616
bitfield = "0.13.2"
1717
rhexdump="0.1.1"
1818
capstone = "0.11.0"
19+
keystone-engine = "0.1.0"
1920
regex = "1"
2021
time = { version = "0.3.9", features = ["local-offset", "formatting"] }
2122

22-
[dependencies.keystone-engine]
23-
git = "https://github.com/impalabs/keystone-bindings"
24-
branch = "master"
25-
version = "0.1.0"
26-
default-features = false
27-
features = ["build-from-src"]
28-
2923
[package.metadata.docs.rs]
30-
targets = ["x86_64-apple-darwin", "aarch64-apple-darwin"]
24+
targets = ["x86_64-apple-darwin", "aarch64-apple-darwin"]

src/crash.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@ pub enum ExitKind {
4343
///
4444
/// An additional file that only contains the testcase is also created.
4545
///
46-
/// Crashes are stored using [`CrashHandler::store_crash`] and timeouts using
47-
/// [`CrashHandler::store_timeout`].
46+
/// Crashes and timeouts are stored using [`CrashHandler::store_crash`].
4847
pub struct CrashHandler {
4948
/// The path to the crash directory.
5049
path: PathBuf,

0 commit comments

Comments
 (0)