[package]
edition = "2021"
name = "ipcrypt-rs"
version = "0.9.5"
authors = ["Frank Denis <github@pureftpd.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "IP address encryption and obfuscation methods in pure Rust"
documentation = "https://docs.rs/ipcrypt-rs"
readme = "README.md"
keywords = [
"encryption",
"privacy",
"ip",
"ipcrypt",
"security",
]
categories = [
"cryptography",
"network-programming",
]
license = "ISC"
repository = "https://github.com/jedisct1/rust-ipcrypt2"
[features]
default = ["random"]
random = [
"dep:rand",
"dep:getrandom",
]
[lib]
name = "ipcrypt_rs"
path = "src/lib.rs"
[dependencies.aes]
version = "0.9"
features = ["hazmat"]
[dependencies.getrandom]
version = "0.4"
features = ["wasm_js"]
optional = true
[dependencies.rand]
version = "0.10"
optional = true
[dev-dependencies.ct-codecs]
version = "1.1"