qemu-nyx-runner/Cargo.toml
David Venhoff 2d88a8539f Move install nyx functionality from build script to runtime
It did not make a lot of sense to have that in the buildscript, as that will make nyx_runner dependent on the target directory.
This also allows specifying a binary to trace at runtime
2025-09-07 14:36:02 +02:00

15 lines
345 B
TOML

[workspace]
resolver = "3"
members = ["client", "pt-dump-decoder"]
[package]
name = "qemu-nyx-runner"
version = "0.1.0"
edition = "2024"
[dependencies]
libnyx = { git = "https://git.cs.tu-dortmund.de/david.venhoff/libnyx-fork" }
pt-dump-decoder = { path = "pt-dump-decoder" }
csv = "1.3.1"
clap = { version = "4.5.47", features = ["derive"] }