2021-03-21 14:12:03 -03:00
|
|
|
[package]
|
|
|
|
|
name = "pkg6dev"
|
2025-07-27 11:08:39 +02:00
|
|
|
version.workspace = true
|
|
|
|
|
authors.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
license-file.workspace = true
|
2021-04-24 23:20:36 -03:00
|
|
|
description = "Helper tool for IPS package development"
|
2025-07-27 11:08:39 +02:00
|
|
|
repository.workspace = true
|
|
|
|
|
readme.workspace = true
|
|
|
|
|
keywords.workspace = true
|
2021-03-21 14:12:03 -03:00
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2025-07-26 21:20:50 +02:00
|
|
|
libips = {path = "../libips", version = "0.1"}
|
|
|
|
|
userland = {path = "../userland", version = "*"}
|
|
|
|
|
clap = {version = "4", features = [ "derive" ] }
|
|
|
|
|
tracing = "0.1"
|
2025-07-27 11:08:39 +02:00
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
2025-07-26 23:02:56 +02:00
|
|
|
miette = { version = "7", features = ["fancy"] }
|
|
|
|
|
thiserror = "2"
|
2025-07-26 21:20:50 +02:00
|
|
|
anyhow = "1.0"
|