mirror of
https://codeberg.org/Toasterson/ips.git
synced 2026-04-10 21:30:41 +00:00
- Implemented incorporation lock functionality for packages, including pre-checks, addition, and retrieval methods. - Enhanced package installation logic to handle incorporation constraints. - Updated dependency versions in `Cargo.toml` and `Cargo.lock`, aligning with latest compatible releases. - Introduced new tests to verify incorporation lock behavior, including scenarios with and without locks. - Refactored code for improved readability and added error handling improvements. - Fixed minor typos and inconsistencies in comments and log messages.
22 lines
No EOL
610 B
TOML
22 lines
No EOL
610 B
TOML
[package]
|
|
name = "ports"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license-file.workspace = true
|
|
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]
|
|
anyhow = "1.0.59"
|
|
clap = {version = "4", features = [ "derive", "env" ] }
|
|
specfile = {path = "../specfile"}
|
|
shellexpand = "3"
|
|
url = { version = "2.2.2", features = ["serde"]}
|
|
reqwest = { version = "0.12", features = ["blocking"] }
|
|
which = "8"
|
|
libips = {path = "../libips"}
|
|
thiserror = "*" |