-
-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathCargo.toml
More file actions
133 lines (110 loc) · 2.68 KB
/
Copy pathCargo.toml
File metadata and controls
133 lines (110 loc) · 2.68 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
[package]
name = "bob-nvim"
edition = "2024"
version = "4.1.7"
description = "A version manager for neovim"
readme = "README.md"
keywords = ["neovim", "version-manager"]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/MordechaiHadad/bob"
rust-version = "1.85"
[dependencies]
anyhow = "1.0.52"
cfg-if = "1.0"
indicatif = "0.18.0"
rand = "0.8.5"
serde_json = "1.0"
yansi = "0.5.1"
async-recursion = "1.0.2"
clap_complete = "4.1"
toml = "0.8.8"
semver = "1.0.22"
sha2 = "0.10.8"
what-the-path = "^0.1.3"
sysinfo = "0.35.2"
clap_complete_nushell = "4.5.8"
[dev-dependencies]
tempfile = "3"
[dependencies.chrono]
version = "0.4.23"
features = ["serde"]
optional = false
[dependencies.clap]
version = "4.0.15"
features = ["derive"]
optional = false
[dependencies.dialoguer]
version = "0.11.0"
features = []
optional = false
default-features = false
[dependencies.futures-util]
version = "0.3.14"
features = []
optional = false
default-features = false
[dependencies.regex]
version = "1.5"
features = []
optional = false
[dependencies.reqwest]
version = "0.12"
features = ["stream", "rustls-tls-native-roots"]
optional = false
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = false
[dependencies.tokio]
version = "1.16.1"
features = ["full"]
optional = false
[dependencies.tracing]
version = "0.1.41"
features = []
optional = false
[dependencies.tracing-subscriber]
version = "0.3.20"
features = ["env-filter"]
optional = false
[target.'cfg(unix)'.dependencies.nix]
version = "0.28.0"
features = ["signal"]
[target.'cfg(unix)'.dependencies]
flate2 = "1.0.26"
tar = "0.4"
[target."cfg(windows)".dependencies]
winreg = "0.10.1"
zip = "8.1.0"
[[bin]]
path = "src/main.rs"
name = "bob"
proc-macro = false
required-features = []
[profile.dev]
opt-level = 1
codegen-units = 256
incremental = true
[profile.optimized]
inherits = "release"
opt-level = "z"
strip = true
lto = true
codegen-units = 1
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/bob-{ target-family }-{ target-arch }{ archive-suffix }"
bin-dir = "bob-{ target-family }-{ target-arch }/{ bin }{ binary-ext }"
pkg-fmt = "zip"
disabled-strategies = ["quick-install"]
[package.metadata.binstall.overrides.aarch64-apple-darwin]
pkg-url = "{ repo }/releases/download/v{ version }/bob-macos-arm.{ archive-format }"
bin-dir = "bob-macos-arm/{ bin }"
[package.metadata.binstall.overrides.x86_64-apple-darwin]
pkg-url = "{ repo }/releases/download/v{ version }/bob-macos-x86_64.{ archive-format }"
bin-dir = "bob-macos-x86_64/{ bin }"
[package.metadata.appimage]
assets = ["resources"]
icon = "resources/bob-icon.png"
desktop_entry = "resources/bob.desktop"