-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (51 loc) · 1.48 KB
/
Cargo.toml
File metadata and controls
57 lines (51 loc) · 1.48 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 = "cutler"
version = "0.19.7"
edition = "2024"
description = "Powerful, declarative settings management for your Mac, with speed."
homepage = "https://machlit.github.io/cutler"
repository = "https://github.com/machlit/cutler"
keywords = ["macos", "setup-automation", "declarative-config", "declarative-settings", "settings-manager"]
readme = "README.md"
license = "GPL-3.0-or-later"
authors = ["Machlit", "Anindya Shiddhartha <[email protected]>"]
categories = ["command-line-utilities"]
[dependencies]
toml = "0.9"
toml_edit = "0.24"
clap = { version = "4", features = ["derive"] }
clap_complete = "4.6.0"
serde_json = "1.0.149"
serde = { version = "1.0", features = ["derive"] }
semver = "1.0.28"
anyhow = "1.0.102"
tokio = { version = "1", features = ["full"] }
anstyle = "1.0.14"
dialoguer = "0.12.0"
self_update = { version = "0.44.0", features = ["archive-tar", "compression-flate2"] }
async-trait = "0.1.89"
defaults-rs = { version = "1.2.2", default-features = false }
nix = { version = "0.31.2", features = ["user"] }
reqwest = { version = "0.12", features = [
"json",
"rustls-tls",
], default-features = false }
which = "8.0.2"
dirs = "6.0.0"
once_cell = "1.21.4"
shell-words = "1.1.1"
regex = "1.12.3"
sha2 = "0.11.0"
[dev-dependencies]
tempfile = "3.27.0"
[workspace]
members = [".", "xtask"]
[lints.clippy]
unwrap_used = "deny"
expect_used = "deny"
unreachable = "deny"
must_use_candidate = "warn"
[lints.rust]
unused_must_use = "deny"
[profile.release]
lto = "thin"