2022-02-06 19:04:36 +00:00
|
|
|
[package]
|
2022-02-07 00:54:36 +00:00
|
|
|
name = "ruck"
|
2022-02-06 19:04:36 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2022-09-06 16:59:33 +01:00
|
|
|
description = "A croc-inspired tool for hosting relay servers and sending e2e encrypted files."
|
2022-02-06 19:04:36 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-02-10 19:52:28 +00:00
|
|
|
|
|
|
|
aes-gcm = "0.9.4"
|
|
|
|
anyhow = "1.0"
|
2022-02-12 01:50:14 +00:00
|
|
|
blake2 = "0.10.2"
|
2022-02-06 19:04:36 +00:00
|
|
|
bytes = { version = "1", features = ["serde"] }
|
2022-02-10 19:52:28 +00:00
|
|
|
bincode = "1.3.3"
|
2022-02-07 00:54:36 +00:00
|
|
|
clap = { version = "3.0.14", features = ["derive"] }
|
2022-08-31 19:05:58 +01:00
|
|
|
flate2 = "1.0"
|
2022-02-06 19:04:36 +00:00
|
|
|
futures = { version = "0.3.0", features = ["thread-pool"]}
|
2022-09-06 16:59:33 +01:00
|
|
|
names = "0.14.0"
|
2022-02-12 17:18:24 +00:00
|
|
|
rand = "0.8.4"
|
2022-02-06 19:04:36 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-02-10 19:52:28 +00:00
|
|
|
spake2 = "0.3.1"
|
2022-02-06 19:04:36 +00:00
|
|
|
tokio = { version = "1.16.1", features = ["full"] }
|
2022-02-07 00:54:36 +00:00
|
|
|
tokio-util = { version = "0.6.3", features = ["full"]}
|