-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 786 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 786 Bytes
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
[package]
name = "dnetmap"
version = "0.1.0"
edition = "2024"
authors = ["Aguacero7 <naps@teamnaps.fr>"]
description = "A CLI tool to inspect Docker networks using Rust."
readme = "README.md"
license = "MIT"
repository = "https://github.com/aguacero7/dnetmap"
homepage = "https://github.com/aguacero7/dnetmap"
keywords = ["docker", "cli", "network", "inspect", "rust"]
categories = ["command-line-utilities", "development-tools", "network-programming"]
exclude = ["/.github", "/target", "/.gitignore", "*.tar.gz"]
[badges]
maintenance = { status = "actively-developed" }
[[bin]]
name = "dnetmap"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = "0.4"
colored = "3.0.0"