-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
61 lines (58 loc) · 1.92 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
[workspace]
members = ["crates/app", "crates/common", "crates/procmacro", "crates/generator"]
default-members = ["crates/app"]
resolver = "2"
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
[workspace.package]
version = "0.3.11"
description = "Huber package, simplify `GitHub release` package management with a live awesome list of GitHub project"
authors = ["David Ko <[email protected]>"]
edition = "2021"
keywords = ["github", "package-management", "cli", "package"]
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-common = { path = "crates/common" }
huber-procmacro = { path = "crates/procmacro" }
libcli-rs = "0.1.4"
clap = { version = "3.1.6", features = ["env"] }
log = "0.4"
pretty_env_logger = "0.4"
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.11", features = ["json"] }
tokio = { version = "1.27", features = ["full"] } # reqwest 0.10, hubcaps 0.6 does not support tokio 0.3/1.0 yet, ref: https://github.com/seanmonstar/reqwest/issues/1060
#hubcaps = { git = "https://github.com/softprops/hubcaps", rev = "324d02fbb371782c82e9a13b839b86894475c91f" } # wait for hubcaps formal release > 0.6
hubcaps-ex = "0.6.2"
compress-tools = "0.14.0"
derive_more = "=0.99.17" # remove = until https://github.com/OSSystems/compress-tools-rs/pull/58 merged
regex = "1.4.1"
futures = "0.3"
async-trait = "0.1.64"
git2 = "0.16.1"
chrono = "0.4"
symlink = "0.1.0"
is_executable = "1.0.1"
urlencoding = "2.1.2"
url = "2"
Inflector = "0.11.4"
fs_extra = "1.1"
maplit = "1.0"
rayon = "1.6"
fs2 = "0.4.3"
simpledi-rs = "0.1.0"
array_tool = "1.0.3"
indicatif = "0.17.3"
prettytable-rs = "0.10.0"