-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
103 lines (93 loc) · 2.35 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
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
[package]
authors = ["Juliette Cordor <[email protected]>"]
description = "Stupid Fast Scoop Utils"
edition = "2024"
license = "MIT OR Apache-2.0"
name = "sfsu"
publish = true
repository = "https://github.com/winpax/sfsu"
version = "1.16.0"
[[bench]]
harness = false
name = "searching"
[[bench]]
harness = false
name = "ref-matching"
[[bench]]
harness = false
name = "serde"
[[bench]]
harness = false
name = "autoupdate"
[profile.release]
codegen-units = 1
lto = true
[profile.profiling]
debug = true
inherits = "release"
strip = "none"
[features]
beta = ["sprinkles-rs/beta"]
contexts = []
default = ["download", "contexts"]
download = ["sprinkles-rs/manifest-hashes"]
# Changes that fundamentally change the API are locked behind this feature flag
v2 = []
[dependencies]
anyhow = "1.0"
bat = { version = "0.25", default-features = false, features = ["regex-onig"] }
cfg-if = "1.0"
chrono = { version = "0.4", features = [
"clock",
"serde",
"std",
], default-features = false }
clap = { version = "4.5", features = [
"derive",
"env",
"string",
"unicode",
"wrap_help",
] }
console = { version = "0.15", features = ["windows-console-colors"] }
crossterm = "0.28"
derive_more = { version = "1.0", features = ["deref_mut", "deref", "as_ref"] }
dialoguer = "0.11"
futures = "0.3"
heck = "0.5"
human-panic = "2.0"
itertools = "0.14"
konst = "0.3"
log = { version = "0.4", features = ["std"] }
open = "5.1"
parking_lot = "0.12"
prodash = { version = "29.0", features = [
"render-line",
"render-line-crossterm",
] }
quork = "0.8"
rand = "0.8"
ratatui = { version = "0.29", features = ["macros"] }
rayon = "1.10"
regex = "1.10"
semver = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
shadow-rs = "0.38"
sprinkles-rs = { version = "0.20", features = ["clap"] }
tokio = { version = "1.37", features = ["full"] }
vt3 = "0.7"
which = "7.0"
windows = { version = "0.59", features = ["Win32_Storage_FileSystem"] }
windows-version = "0.1"
winreg = "0.55"
[dev-dependencies]
criterion = { version = "0.5", features = ["async_tokio", "html_reports"] }
[build-dependencies]
contribs = { git = "https://github.com/winpax/contribs.git", version = "0.1" }
dotenv = "0.15"
git2 = "0.20"
shadow-rs = "0.38"
tokio = { version = "1.37", features = ["full"] }
toml_edit = "0.22"
winres = "0.1"