[package]
edition = "2021"
rust-version = "1.66.1"
name = "ece-native"
version = "0.5.0"
authors = ["Leo Gaskin <leo.gaskin@le0.gs>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Encrypted Content-Encoding (ECE) encryption and decryption implemented according to RFC8188"
homepage = "https://github.com/leotaku/web-push-native"
readme = "README.md"
keywords = [
"http-ece",
"web-push",
"ece",
"rust-crypto",
]
categories = [
"cryptography",
"network-programming",
"web-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/leotaku/web-push-native"
[lib]
name = "ece_native"
path = "src/lib.rs"
[dependencies.aes-gcm]
version = "0.10.3"
[dependencies.hkdf]
version = "0.12.4"
[dependencies.sha2]
version = "0.10.9"
[dev-dependencies.base64ct]
version = "1.6.0"
features = [
"alloc",
"std",
]
[dev-dependencies.once_cell]
version = "1.21.4"