-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (32 loc) · 1.08 KB
/
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
32
33
34
35
[package]
name = "transferhelper"
version = "0.4.910"
edition = "2021"
authors = ["OLoKo64 <[email protected]>"]
keywords = ["transfersh", "transfer", "terminal", "upload", "cloud"]
description = "Store your transfer.sh links, so you can remember them later and know when they will expire."
categories = ["command-line-interface", "command-line-utilities"]
repository = "https://github.com/OLoKo64/transfer-sh-helper-rusted"
license = "MIT"
[profile.release]
lto = true
strip = true
codegen-units = 1
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4.31"
serde = { version = "1.0.192", features = ["derive"] }
serde_json = "1.0.108"
clap = { version = "4.4.7", features = ["derive"] }
dirs = "5.0.1"
owo-colors = "3.5.0"
tokio = { version = "1.33.0", features = ["macros", "rt"] }
reqwest = { version = "0.11.22", features = ["stream"] }
tokio-util = "0.7.10"
async-stream = "0.3.5"
tokio-stream = "0.1.14"
once_cell = "1.18.0"
comprexor = "0.1.520"
rusqlite = "0.29.0"
comfy-table = "7.1.0"
sha2 = "0.10.8"