contego/Cargo.toml

25 lines
529 B
TOML
Raw Permalink Normal View History

2024-09-23 23:14:53 +02:00
[package]
name = "contego"
version = "0.4.0"
authors = ["ae"]
description = "Cryptographically secure file transfer CLI tool "
repository = "https://umbrella.haus/ae/contego"
license = "MIT"
edition = "2021"
[dependencies]
tokio = { version = "1.28.1", features = ["full"] }
rand = "0.7.0"
x25519-dalek = "1.2.0"
aes-gcm = "0.10.3"
base64 = "0.21.2"
sha256 = "1.1.3"
ureq = "2.6.2"
clap = { version = "4.3.0", features = ["derive"] }
log = "0.4.17"
env_logger = "0.10.0"
[dev-dependencies]
tokio-test = "0.4.2"
ntest = "0.9.0"