-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCargo.toml
65 lines (62 loc) · 1.76 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[workspace]
members = ["huber", "huber-generator", "huber-procmacro"]
default-members = ["huber", "huber-procmacro"]
exclude = ["huber-generator"]
resolver = "2"
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
[workspace.package]
version = "1.0.10"
description = "Huber, simplify GitHub package management"
authors = ["David Ko <innobead@gmail.com>"]
edition = "2021"
keywords = ["github", "package-management", "cli"]
categories = ["command-line-interface", "command-line-utilities", "development-tools"]
homepage = "https://github.com/innobead/huber"
repository = "https://github.com/innobead/huber"
readme = "README.md"
license-file = "LICENSE"
[workspace.dependencies]
huber-procmacro = { path = "huber-procmacro", version = "1.0.10" }
libcli-rs = "0.1.4"
clap = { version = "4.5.21", features = ["env", "derive"] }
log = "0.4"
env_logger = "0.11.5"
lazy_static = "1.4.0"
anyhow = "1.0"
dirs = "5.0.0"
semver = "1.0.14"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9.19"
reqwest = { version = "0.12.9", default-features = false, features = ["json", "native-tls-vendored"] }
tokio = { version = "1.27", features = ["full"] }
regex = "1.4.1"
futures = "0.3"
async-trait = "0.1.64"
git2 = { version = "0.20.0", features = ["vendored-libgit2", "vendored-openssl"] }
chrono = "0.4"
symlink = "0.1.0"
is_executable = "1.0.1"
urlencoding = "2.1.2"
url = "2"
fs_extra = "1.1"
maplit = "1.0"
rayon = "1.6"
simpledi-rs = "0.1.0"
quote = "1.0"
octocrab = "0.42.1"
syn = "2.0.90"
fs2 = "0.4.3"
clap_complete = "4.5.40"
thiserror = "2.0.9"
scopeguard = "1.1.0"
better-panic = "0.3.0"
filepath = "0.2.0"
tar = "0.4.43"
xz2 = "0.1.0"
flate2 = "1.0.19"
zip = { version = "2.2.2", default-features = false, features = ["deflate-zlib-ng"] }