-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (29 loc) · 836 Bytes
/
Cargo.toml
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
27
28
29
30
31
[package]
name = "bup"
version = "0.1.5"
authors = ["fadedbee <[email protected]>"]
license = "AGPL-3.0-only"
description = "A command-line client for Blind Upload."
readme = "README.md"
homepage = "https://github.com/fadedbee/bup"
repository = "https://github.com/fadedbee/bup"
keywords = ["cli", "upload", "aes256"]
categories = ["command-line-utilities"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.56"
shellexpand = "2.1.0"
url = "2.2.2"
libc = "0.2.122"
aes-gcm = "0.9.4"
qr2term = "0.3.0"
num = "0.4.0"
lazy_static = "1.4.0"
hex = "0.4.3"
rand = "0.8.5"
reqwest = { version = "0.11.10", features = ["blocking"] }
sha2 = "0.10.2"
serde = { version = "1.0.137", features = ["derive"] }
serde_json = "1.0.80"
regex = "1.5.5"