-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
33 lines (31 loc) · 895 Bytes
/
Cargo.toml
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
[package]
name = "netrange"
version = "0.5.0"
authors = ["Palmer Cox <[email protected]>"]
edition = "2018"
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/DaGenix/netrange"
documentation = "https://github.com/DaGenix/netrange"
homepage = "https://github.com/DaGenix/netrange"
description = """
A simple CLI utility to retrieve, filter, and merge adjacent
IP ranges for various cloud providers.
"""
categories = ["network-programming", "algorithms", "command-line-utilities"]
[workspace]
members = [
"libnetrangemerge",
]
[dependencies]
anyhow = "1.0.38"
rlua = "0.17.0"
serde = { version = "1.0.123", features = ["derive"] }
serde_json = "1.0.62"
libnetrangemerge = { path = "libnetrangemerge", version = "0.1.0" }
structopt = "0.3.21"
reqwest = { version = "0.11.2", features = ["blocking"] }
regex = "1.4.3"
cidr = "0.1.1"
once_cell = "1.7.2"
csv = "1.1.6"