2022-07-10 21:16:50 +02:00
|
|
|
[package]
|
2023-04-01 19:25:17 +02:00
|
|
|
name = "contego"
|
2023-04-22 00:32:52 +02:00
|
|
|
description = "Dynamic CLI tool for secure file transfer"
|
2022-07-29 02:34:30 +02:00
|
|
|
version = "0.3.0"
|
2022-07-10 21:16:50 +02:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-03-02 15:33:32 +01:00
|
|
|
tokio = { version = "1.20.4", features = ["full"] }
|
2023-04-01 19:02:13 +02:00
|
|
|
rand = "0.7.0"
|
|
|
|
x25519-dalek = "1.2.0"
|
|
|
|
aes-gcm = "0.10.1"
|
|
|
|
base64 = "0.21.0"
|
|
|
|
sha256 = "1.1.2"
|
2023-04-22 00:32:52 +02:00
|
|
|
ureq = "2.6.2"
|
2023-05-01 02:51:23 +02:00
|
|
|
clap = { version = "4.2.5", features = ["derive"] }
|
2022-07-15 15:18:03 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tokio-test = "0.4.2"
|
|
|
|
ntest = "0.8.1"
|