Skip to content

Commit

Permalink
Add libipt_master feature, bump to 0.2.1-beta.1 (#8)
Browse files Browse the repository at this point in the history
* libipt_master feature

* clippy, bump to 0.2.1-beta.1
  • Loading branch information
Marcondiro authored Nov 25, 2024
1 parent 1388e2c commit b312bc7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
[package]
name = "libipt"
version = "0.2.0"
version = "0.2.1-beta.1"
authors = ["sum_catnip <[email protected]>", "Marcondiro"]
edition = "2021"
license = "MIT"
description = "The Intel Processor Trace (Intel PT) Decoder Library is Intel's reference implementation for decoding Intel PT."
repository = "https://github.com/sum-catnip/libipt-rs"

[features]
libipt_master = ["libipt-sys/libipt_master"]

[dependencies]
libipt-sys = "0.2.0"
libipt-sys = "0.2.1-beta.1"
bitflags = "2.4.1"
num_enum = "0.7.1"
3 changes: 3 additions & 0 deletions src/block/block.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Certain casts are required only on Windows. Inform Clippy to ignore them.
#![allow(clippy::unnecessary_cast)]

use crate::event::ExecModeType;
use crate::insn::Class;
use libipt_sys::pt_block;
Expand Down

0 comments on commit b312bc7

Please sign in to comment.