-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (22 loc) · 774 Bytes
/
Cargo.toml
File metadata and controls
24 lines (22 loc) · 774 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
[package]
name = "simple_crypt"
version = "0.2.3"
authors = ["NiiightmareXD <https://github.com/NiiightmareXD"]
edition = "2021"
license = "MIT"
readme = "README.md"
description = "A simple and high level library to encrypt and decrypt texts, files, folders and any data with it"
documentation = "https://docs.rs/simple_crypt"
repository = "https://github.com/NiiightmareXD/simple_crypt"
keywords = ["crypto", "encryption", "chacha20", "poly1305", "argon2", "cypher"]
categories = ["cryptography"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = "1.0.143"
serde_derive = "1.0.143"
rust-argon2 = "1.0.0"
bincode = "1.3.3"
log = "0.4.17"
tar = "0.4.38"
chacha20poly1305 = "0.10.1"
thiserror = "1.0.68"