[package]
edition = "2024"
rust-version = "1.85"
name = "ulagen"
version = "1.0.0"
authors = ["Erik Kline"]
build = false
include = [
"src/**/*.rs",
"Cargo.toml",
"README.md",
"LICENSE",
"CHANGELOG.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generate random IPv6 Unique Local Address (ULA) /48 prefixes per RFC 4193, as a library and CLI."
homepage = "https://github.com/ekline/ulagen"
documentation = "https://docs.rs/ulagen"
readme = "README.md"
keywords = [
"ipv6",
"ula",
"rfc4193",
"networking",
"cli",
]
categories = [
"network-programming",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/ekline/ulagen"
[lib]
name = "ulagen"
path = "src/lib.rs"
[[bin]]
name = "ulagen"
path = "src/bin/ulagen.rs"
[dependencies.rand]
version = "0.10"
[lints.clippy]
module_name_repetitions = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "deny"
unsafe_code = "forbid"