1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
[package]
name = "prips"
version = "1.2.2"
rust-version = "1.67"
authors = ["Peter Pentchev <roam@ringlet.net>"]
edition = "2021"
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"]
[dependencies]
anyhow = "1"
clap = "4.0.32"
clap_derive = "4"
nom = "7.1.1"
thiserror = "1"
[dev-dependencies]
itertools = ">= 0.10, < 0.14"
rstest = ">= 0.17, < 0.23"
|