[package]
edition = "2024"
name = "twopoint"
version = "0.1.0"
authors = ["Lua MacDougall <lua@foxgirl.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Encrypted UDP messaging between two endpoints using AES-128-GCM"
readme = "README.md"
keywords = [
"tunnel",
"point-to-point",
"udp",
"encryption",
]
categories = [
"network-programming",
"cryptography",
]
license = "MIT"
repository = "https://github.com/luavixen/twopoint"
[lib]
name = "twopoint"
path = "src/lib.rs"
[dependencies.aes-gcm]
version = "=0.11.0-rc.0"
[dependencies.hex]
version = "0.4"
[dependencies.rand]
version = "0.9"
[dependencies.rand_chacha]
version = "0.9"