-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
57 lines (52 loc) · 1.37 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
[package]
name = "ghr"
description = "Yet another repository management with auto-attaching profiles."
version = "0.3.10"
license = "MIT"
homepage = "https://github.com/siketyan/ghr"
repository = "https://github.com/siketyan/ghr.git"
readme = "README.md"
rust-version = "1.69.0"
edition = "2021"
authors = [
"Naoki Ikeguchi <[email protected]>",
]
[dependencies]
anyhow = "1.0"
async-hofs = "0.1.1"
async-trait = "0.1.73"
build-info = "0.0.31"
clap = { version = "4.4", features = ["derive"] }
console = "0.15.7"
dialoguer = "0.10.4"
dirs = "5.0"
git2 = "0.17.2"
itertools = "0.11.0"
indicatif = "0.17.6"
lazy_static = "1.4"
regex = "1.9"
serde = { version = "1.0", features = ["derive"] }
serde_regex = "1.1"
serde_with = "3.3"
tokio = { version = "1.32", features = ["macros", "rt-multi-thread"] }
tokio-stream = "0.1.14"
toml = "0.8.0"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
url = "2.4"
walkdir = "2.4"
gh-config = { version = "0.2.2", optional = true }
octocrab = { version = "0.30.1", optional = true }
[target.'cfg(windows)'.dependencies.windows]
version = "0.48.0"
features = [
"Win32_UI_Shell",
"Win32_Foundation",
"Win32_UI_WindowsAndMessaging",
]
[build-dependencies]
build-info-build = "0.0.31"
[features]
default = ["github"]
vendored = ["git2/vendored-libgit2", "git2/vendored-openssl"]
github = ["gh-config", "octocrab"]