alemi
690cb379d7
now procmaps, threads and hexdump output is different when returned: hexdump gives just the hex string divided in octets, while procmaps and threads return a table of tables with proper fields
25 lines
651 B
TOML
25 lines
651 B
TOML
[package]
|
|
name = "cordy"
|
|
version = "0.1.1"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "cordy"
|
|
crate-type = ["cdylib"]
|
|
path = "src/lib.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
ctor = "0.1"
|
|
tracing = "0.1"
|
|
pox = { git = "ssh://git@git.fantabos.co/srv/git/pox", branch = "dev", features = ["monitor"] }
|
|
tokio = { version = "1.27", features = ["full"] }
|
|
tracing-subscriber = "0.3"
|
|
mlua = { version = "0.8", features = ["luajit52", "vendored", "async", "send", "serialize"] }
|
|
serde = "1.0.159"
|
|
serde_json = "1.0.95"
|
|
nix = "0.26.2"
|
|
pretty-hex = "0.3"
|
|
signal-hook = "0.3.15"
|
|
procfs = "0.15.1"
|