[package]
edition = "2021"
rust-version = "1.69"
name = "noise-framework"
version = "0.4.1"
authors = ["Dr. Maxim Orlovsky <orlovsky@cyphernet.io>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Noise protocol framework in functional style"
homepage = "https://cyphernet.io"
readme = "README.md"
keywords = [
"cyphernet",
"privacy",
"noise",
"end-to-end",
"ecryption",
]
categories = [
"network-programming",
"cryptography",
]
license = "Apache-2.0"
repository = "https://github.com/Cyphernet-DAO/rust-cyphernet"
[package.metadata.docs.rs]
all-features = true
rustc-args = [
"--cfg",
"docsrs",
]
[features]
blake3 = ["cyphergraphy/blake3"]
secp256k1 = [
"cyphergraphy/secp256k1",
"cyphergraphy/keygen_secp256k1",
]
sha2 = ["cyphergraphy/sha2"]
sha3 = ["cyphergraphy/sha3"]
x25519 = [
"cyphergraphy/x25519",
"cyphergraphy/keygen_25519",
]
[lib]
name = "noise"
path = "src/lib.rs"
[dependencies.amplify]
version = "4.6.0"
[dependencies.chacha20poly1305]
version = "0.10.1"
[dependencies.cyphergraphy]
version = "0.3.1"