-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 778 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (27 loc) · 778 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
28
29
30
31
[package]
name = "ipv6-only"
version = "0.1.0"
edition = "2021"
authors = ["Jonathan D.A. Jewell <jonathan@hyperpolymath.org>"]
description = "IPv6 address manipulation, subnet calculation, and network planning tools"
license = "MPL-2.0"
repository = "https://github.com/hyperpolymath/ipv6-only"
[workspace]
members = ["crates/*"]
[workspace.dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
rand = "0.8"
hex = "0.4"
[dependencies]
ipv6-only-core = { path = "crates/core" }
ipv6-only-utils = { path = "crates/utils" }
ipv6-only-subnet = { path = "crates/subnet" }
clap.workspace = true
serde.workspace = true
serde_json.workspace = true
[[bin]]
name = "ipv6"
path = "src/main.rs"