-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (52 loc) · 1.37 KB
/
Copy pathCargo.toml
File metadata and controls
57 lines (52 loc) · 1.37 KB
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.4.5"
license = "MIT"
homepage = "https://github.com/siketyan/ghr"
repository = "https://github.com/siketyan/ghr.git"
readme = "README.md"
rust-version = "1.85.0"
edition = "2024"
authors = [
"Naoki Ikeguchi <me@s6n.jp>",
]
[dependencies]
anyhow = "1.0"
async-hofs = "0.1.1"
async-trait = "0.1.89"
build-info = "0.0.41"
clap = { version = "4.6", features = ["derive"] }
console = "0.16.3"
dialoguer = "0.12.0"
dirs = "6.0"
git2 = "0.20.4"
itertools = "0.15.0"
indicatif = "0.18.4"
nucleo-matcher = "0.3.1"
regex = "1.12"
serde = { version = "1.0", features = ["derive"] }
serde_regex = "1.1"
serde_with = "3.17"
tokio = { version = "1.52", features = ["macros", "rt-multi-thread"] }
tokio-stream = "0.1.18"
toml = "1.1.2"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
url = "2.5"
walkdir = "2.5"
gh-config = { version = "0.6.0", optional = true }
octocrab = { version = "0.47.1", optional = true }
[target.'cfg(windows)'.dependencies.windows]
version = "0.62.0"
features = [
"Win32_UI_Shell",
"Win32_Foundation",
"Win32_UI_WindowsAndMessaging",
]
[build-dependencies]
build-info-build = "0.0.41"
[features]
default = ["github"]
vendored = ["git2/vendored-libgit2", "git2/vendored-openssl"]
github = ["gh-config", "octocrab"]