1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
# SPDX-FileCopyrightText: Peter Pentchev <roam@ringlet.net>
# SPDX-License-Identifier: GPL-2.0-or-later
[package]
name = "prips"
version = "1.3.1"
rust-version = "1.85"
authors = ["Peter Pentchev <roam@ringlet.net>"]
edition = "2024"
description = "Print the IP addresses in a given range"
homepage = "https://devel.ringlet.net/sysutils/prips/"
repository = "https://gitlab.com/prips/prips.git"
license = "BSD-2-clause"
categories = ["command-line-utilities", "value-formatting"]
keywords = ["ipv4", "ip", "network", "address", "calculator"]
[package.metadata.cargo-feature-combinations]
exclude_features = ["default"]
[features]
default = []
nom7 = ["dep:nom7"]
nom8 = []
[dependencies]
eyre = "0.6.12"
clap = "4.5.23"
clap_derive = "4.5.18"
winnow = "0.7.13"
nom7 = { package = "nom", version = "7.1.3", optional = true }
[dev-dependencies]
itertools = ">= 0.13, < 0.15"
rstest = ">= 0.17, < 0.27"
|