-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
35 lines (32 loc) · 983 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
32
33
34
35
[package]
name = "tool-sync"
version = "0.2.0"
authors = ["Dmitrii Kovanikov <[email protected]>"]
license = "MPL-2.0"
description = """
tool-sync is a CLI tool that manages installation of other CLI tools from GitHub
Releases by downloading binaries and storing them in a local directory.
"""
readme = "README.md"
homepage = "https://github.com/chshersh/tool-sync"
repository = "https://github.com/chshersh/tool-sync"
keywords = ["cli", "sync", "download", "tools"]
categories = ["command-line-utilities"]
edition = "2021"
[[bin]]
name = "tool"
path = "src/main.rs"
[dependencies]
clap = { version = "4.0.15", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
ureq = { version = "2.5.0", features = ["json"] }
zip = { version = "0.6.3", default-features = false, features = ["deflate"] }
clap_complete = "4.0.2"
console = "0.15.2"
dirs = "4.0.0"
flate2 = "1.0"
indicatif = "0.17.1"
shellexpand = "2.1.2"
tar = "0.4.38"
tempdir = "0.3.7"
toml = "0.5.9"