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
15 lines
345 B
TOML
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"] }
|