padlock-cli 0.3.0

Struct memory layout analyzer for C, C++, Rust, and Go
[package]
name        = "padlock-cli"
version.workspace     = true
edition.workspace     = true
license.workspace     = true
repository.workspace  = true
description.workspace = true
keywords.workspace    = true
categories.workspace  = true
readme.workspace      = true

[[bin]]
name = "padlock"
path = "src/main.rs"

[[bin]]
name = "cargo-padlock"
path = "src/bin/cargo_padlock.rs"

[dependencies]
padlock-core   = { path = "../padlock-core",   version = "0.3.0" }
padlock-dwarf  = { path = "../padlock-dwarf",  version = "0.3.0" }
padlock-source = { path = "../padlock-source", version = "0.3.0" }
padlock-output = { path = "../padlock-output", version = "0.3.0" }
serde_json     = "1"
regex          = "1"
anyhow         = "1"
clap           = { version = "4", features = ["derive"] }
owo-colors     = "4"
comfy-table    = "7"
toml           = "0.8"
notify         = { version = "6", features = ["macos_fsevent"] }

[dev-dependencies]
tempfile = "3"