-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
36 lines (33 loc) · 1.05 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
36
[package]
name = "kaput-cli"
version = "2.5.0"
edition = "2021"
authors = ["David Chalifoux <mail@chalifoux.dev>"]
license = "MIT"
description = "The unofficial CLI for Put.io"
readme = "README.md"
homepage = "https://github.com/davidchalifoux/kaput-cli"
repository = "https://github.com/davidchalifoux/kaput-cli"
keywords = ["cli", "putio", "kaput", "upload", "download"]
categories = ["command-line-utilities"]
exclude = [".gitignore", ".github/*"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.10", features = ["derive"] }
confy = "0.6.1"
serde = { version = "1.0.214", features = ["derive"] }
reqwest = { version = "0.12.9", features = [
"json",
"blocking",
"multipart",
"native-tls-vendored",
] }
tabled = { version = "0.16.0", features = ["derive"] }
bytefmt = "0.1.7"
serde_json = { version = "1.0.132", features = ["std"] }
serde_with = { version = "3.11.0", features = [] }
base64 = "0.22.1"
blake2 = "0.10.6"
[[bin]]
name = "kaput"
path = "src/main.rs"