2022-09-02 23:48:26 +02:00
|
|
|
[package]
|
|
|
|
|
name = "ports"
|
2026-01-19 00:25:47 +01:00
|
|
|
description.workspace = true
|
2025-07-29 19:08:18 +02:00
|
|
|
version.workspace = true
|
|
|
|
|
authors.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
license-file.workspace = true
|
|
|
|
|
repository.workspace = true
|
|
|
|
|
readme.workspace = true
|
|
|
|
|
keywords.workspace = true
|
2022-09-02 23:48:26 +02:00
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
anyhow = "1.0.59"
|
2025-08-19 14:30:55 +02:00
|
|
|
clap = {version = "4", features = [ "derive", "env" ] }
|
2022-09-02 23:48:26 +02:00
|
|
|
specfile = {path = "../specfile"}
|
2025-08-19 14:30:55 +02:00
|
|
|
shellexpand = "3"
|
2022-09-02 23:48:26 +02:00
|
|
|
url = { version = "2.2.2", features = ["serde"]}
|
2025-08-19 14:30:55 +02:00
|
|
|
reqwest = { version = "0.12", features = ["blocking"] }
|
|
|
|
|
which = "8"
|
2022-09-02 23:48:26 +02:00
|
|
|
libips = {path = "../libips"}
|
2026-01-19 00:27:43 +01:00
|
|
|
thiserror = "*"
|