mirror of
https://codeberg.org/Toasterson/ips.git
synced 2026-04-10 21:30:41 +00:00
22 lines
583 B
TOML
22 lines
583 B
TOML
|
|
[package]
|
||
|
|
name = "pkg6recv"
|
||
|
|
description.workspace = true
|
||
|
|
version.workspace = true
|
||
|
|
authors.workspace = true
|
||
|
|
edition.workspace = true
|
||
|
|
license-file.workspace = true
|
||
|
|
repository.workspace = true
|
||
|
|
readme.workspace = true
|
||
|
|
keywords.workspace = true
|
||
|
|
|
||
|
|
[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", version = "*"}
|
||
|
|
serde = { version = "1", features = ["derive"] }
|
||
|
|
serde_json = "1"
|
||
|
|
tempfile = "3.8"
|