Skip to content

Commit b312bc7

Browse files
authored
Add libipt_master feature, bump to 0.2.1-beta.1 (#8)
* libipt_master feature * clippy, bump to 0.2.1-beta.1
1 parent 1388e2c commit b312bc7

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

Cargo.toml

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
[package]
22
name = "libipt"
3-
version = "0.2.0"
3+
version = "0.2.1-beta.1"
44
authors = ["sum_catnip <catnip@catnip.fyi>", "Marcondiro"]
55
edition = "2021"
66
license = "MIT"
77
description = "The Intel Processor Trace (Intel PT) Decoder Library is Intel's reference implementation for decoding Intel PT."
88
repository = "https://github.com/sum-catnip/libipt-rs"
99

10+
[features]
11+
libipt_master = ["libipt-sys/libipt_master"]
12+
1013
[dependencies]
11-
libipt-sys = "0.2.0"
14+
libipt-sys = "0.2.1-beta.1"
1215
bitflags = "2.4.1"
1316
num_enum = "0.7.1"

src/block/block.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Certain casts are required only on Windows. Inform Clippy to ignore them.
2+
#![allow(clippy::unnecessary_cast)]
3+
14
use crate::event::ExecModeType;
25
use crate::insn::Class;
36
use libipt_sys::pt_block;

0 commit comments

Comments
 (0)