-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 725 Bytes
/
Cargo.toml
File metadata and controls
26 lines (24 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "safeR"
version = "0.1.4"
authors = ["Mateusz Czarnecki (DemwE)"]
description = "A simple and secure file encryption tool"
repository = "https://github.com/DemwE/safeR"
license = "MIT"
readme = "README.md"
categories = ["command-line-utilities"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.2", features = ["derive"] }
log = "0.4.20"
env_logger = "0.11.3"
walkdir = "2.5 "
rand = "0.8.5"
anyhow = "1.0.81"
chacha20poly1305 = { version = "0.10.1", features = ["stream"] }
sha2 = "0.10.8"
arrayref = "0.3.6"
tokio = {version = "1.36.0" , features = ["full"]}
futures = "0.3.30"
indicatif = "0.17.8"