dependabot[bot] 6bbff51951
Update perf-event-open-sys requirement from 4.0.0 to 5.0.0 (#3136)
---
updated-dependencies:
- dependency-name: perf-event-open-sys
  dependency-version: 5.0.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Dongjia "toka" Zhang <tokazerkje@outlook.com>
2025-04-25 13:08:51 +02:00

45 lines
1.3 KiB
TOML

[package]
name = "libafl_intelpt"
version.workspace = true
authors = ["Marco Cavenati <cavenatimarco@gmail.com>"]
description = "Intel Processor Trace wrapper for libafl"
repository = "https://github.com/AFLplusplus/LibAFL/"
edition = "2024"
license.workspace = true
readme = "./README.md"
keywords = ["fuzzing", "testing", "security", "intelpt"]
categories = ["development-tools::testing", "no-std"]
[features]
default = ["std", "libipt"]
std = ["libafl_bolts/std"]
libipt = ["std", "dep:libipt"]
## Export raw Intel PT traces on decode, useful for debug, disabled by default for best performance
export_raw = []
[dev-dependencies]
static_assertions = { workspace = true }
[target.'cfg(target_os = "linux" )'.dev-dependencies]
nix = { workspace = true }
proc-maps = "0.4.0"
[dependencies]
arbitrary-int = { workspace = true }
bitbybit = { workspace = true }
libafl_bolts = { workspace = true }
libc = { workspace = true }
libipt = { workspace = true, optional = true }
log = { workspace = true }
num_enum = { workspace = true, default-features = false }
num-traits = { workspace = true, default-features = false }
raw-cpuid = { version = "11.1.0" }
[target.'cfg(target_os = "linux" )'.dependencies]
caps = { version = "0.5.5" }
perf-event-open-sys = { version = "5.0.0" }
[lints]
workspace = true