-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
32 lines (27 loc) · 855 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
[package]
name = "fcidr"
version = "0.0.0"
authors = ["Nicholas Omer Chiasson <[email protected]>"]
edition = "2021"
license = "MIT"
description = """Fragmented Classless Inter-Domain Routing (FCIDR)"""
readme = "README.md"
homepage = "https://github.com/nicholaschiasson/fcidr"
repository = "https://github.com/nicholaschiasson/fcidr"
keywords = ["network", "ip", "ipv4", "cidr", "cli"]
categories = ["command-line-utilities", "data-structures", "network-programming"]
rust-version = "1.70.0"
[lib]
name = "fcidr"
path = "src/lib.rs"
[[bin]]
name = "fcidr"
path = "src/main.rs"
[badges]
github = { repository = "nicholaschiasson/fcidr" }
maintenance = { status = "passively-maintained" }
[dependencies]
clap = { version = "4.3", features = ["derive"] }
serde = { version = "1.0", optional = true }
[dev-dependencies]
serde_json = "1.0"