mirror of
https://codeberg.org/Toasterson/ips.git
synced 2026-04-10 13:20:42 +00:00
- Centralize package metadata in workspace for consistency. - Upgrade `pkg6dev` and `pkg6repo` to version `0.5.1`, aligning with new workspace configuration. - Introduce `EnvFilter` for dynamic logging configuration, defaulting to debug level. - Add `LoggingEnvError` variant to `Pkg6DevError` with structured diagnostics for improved error handling.
28 lines
781 B
TOML
28 lines
781 B
TOML
[package]
|
|
name = "pkg6repo"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license-file.workspace = true
|
|
description = "The repository management utility for IPS written in rust"
|
|
repository.workspace = true
|
|
readme.workspace = true
|
|
keywords.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = { version = "4", features = ["derive"] }
|
|
miette = { version = "7", features = ["fancy"] }
|
|
thiserror = "2"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
libips = { path = "../libips" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tempfile = "3.8"
|
|
flate2 = "1.0"
|
|
|
|
[[test]]
|
|
name = "e2e_tests"
|
|
path = "src/e2e_tests.rs"
|