[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.5.4" }
padlock-dwarf = { path = "../padlock-dwarf", version = "0.5.4" }
padlock-source = { path = "../padlock-source", version = "0.5.4" }
padlock-output = { path = "../padlock-output", version = "0.5.4" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
regex = "1"
anyhow = "1"
clap = { version = "4", features = ["derive"] }
owo-colors = "4"
comfy-table = "7"
toml = "1"
notify = { version = "6", features = ["macos_fsevent"] }
[dev-dependencies]
tempfile = "3"