2021-03-21 14:12:03 -03:00
|
|
|
[package]
|
|
|
|
|
name = "pkg6repo"
|
2025-07-29 19:08:18 +02:00
|
|
|
description = "The repository management utility for IPS written in rust"
|
2025-07-27 11:08:39 +02:00
|
|
|
version.workspace = true
|
|
|
|
|
authors.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
license-file.workspace = true
|
|
|
|
|
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
|
|
|
clap = { version = "4", features = ["derive"] }
|
|
|
|
|
miette = { version = "7", features = ["fancy"] }
|
|
|
|
|
thiserror = "2"
|
|
|
|
|
tracing = "0.1"
|
2025-07-27 11:02:37 +02:00
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
2025-07-29 19:08:18 +02:00
|
|
|
libips = { path = "../libips", version = "*"}
|
2025-07-26 21:20:50 +02:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
|
serde_json = "1"
|
2025-07-26 23:02:56 +02:00
|
|
|
tempfile = "3.8"
|
|
|
|
|
flate2 = "1.0"
|
2025-07-26 17:49:56 +02:00
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
|
name = "e2e_tests"
|
|
|
|
|
path = "src/e2e_tests.rs"
|