contego/Cargo.toml

25 lines
523 B
TOML
Raw Normal View History

2022-07-10 21:16:50 +02:00
[package]
2023-04-01 19:25:17 +02:00
name = "contego"
2023-05-29 16:52:51 +02:00
version = "0.4.0"
authors = ["17ms"]
description = "A small CLI tool for quick file transfers"
repository = "https://github.com/17ms/contego"
license = "MIT"
2022-07-10 21:16:50 +02:00
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"
2023-04-22 00:32:52 +02:00
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"