[package]
edition = "2021"
name = "cttps"
version = "0.1.2"
authors = ["Saso Ahmed <NotDreamPVP@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Crypto Transfer Protocol Secure (CTTPS) - A high-performance secure transport protocol using X25519 and AES-256-GCM."
readme = "README.md"
keywords = [
"crypto",
"protocol",
"secure",
"x25519",
"aes-gcm",
]
categories = [
"cryptography",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/NotDreamPVP/cttps"
[lib]
name = "cttps"
path = "src/lib.rs"
[[bin]]
name = "cttps"
path = "src/main.rs"
[[example]]
name = "browser"
path = "examples/browser.rs"
[[example]]
name = "client"
path = "examples/client.rs"
[[example]]
name = "server"
path = "examples/server.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.bytes]
version = "1.5"
[dependencies.eframe]
version = "0.26"
[dependencies.futures-util]
version = "0.3"
[dependencies.reqwest]
version = "0.11"
features = [
"json",
"blocking",
]
[dependencies.ring]
version = "0.17"
[dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.tokio-test]
version = "0.4"