-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (42 loc) · 1.18 KB
/
Cargo.toml
File metadata and controls
45 lines (42 loc) · 1.18 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
[package]
name = "ptr"
version = "0.15.1"
edition = "2024"
rust-version = "1.88.0"
description = "PowerToys Run plugin manager"
readme = "README.md"
repository = "https://github.com/8LWXpg/ptr"
license = "MIT"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-{ target }{ archive-suffix }"
bin-dir = "{ bin }{ binary-ext }"
pkg-fmt = "zip"
disabled-strategies = ["quick-install", "compile"]
[dependencies]
anyhow = "1.0.100"
clap = { version = "4.5.51", features = ["derive"] }
clap_complete = "4.5.60"
colored = "3.0.0"
regex = { version = "1.12.2", default-features = false }
reqwest = { version = "0.12.24", default-features = false, features = [
"blocking",
"json",
"native-tls",
] }
self-replace = "1.5.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
tabwriter = { version = "1.4.1", features = ["ansi_formatting"] }
toml = "0.9.8"
windows = { version = "0.62.2", features = [
"Win32_System_Registry",
"Win32_System_Threading",
"Win32_UI_Shell",
] }
zip = { version = "6.0.0", default-features = false, features = ["deflate"] }
[profile.release]
opt-level = "s"
strip = true
lto = true
panic = "abort"
codegen-units = 1