-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 827 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (29 loc) · 827 Bytes
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
[package]
name = "dotin"
version = "0.0.1"
edition = "2024"
description = "A simple dotfiles manager inspired by `stow`."
[dependencies]
clap = { version = "4.4.4", features = ["derive"] }
color-eyre = { version = "0.6.5", default-features = false, features = ["track-caller"] }
eyre = { version = "0.6.12", default-features = false, features = ["track-caller"] }
file_type_enum = "3.0.1"
fs-err = "3.3.0"
fs-tree = { version = "0.8.2" }
indexmap = "2.13.0"
rapidhash = "4.4.1"
[dev-dependencies]
assert_cmd = "2.1.2"
pretty_assertions = "1.4.1"
tempfile = "3.24.0"
fs-err = { version = "3.2.2", features = ["debug"] }
[profile.release]
strip = true
opt-level = "z"
lto = true
[lints.clippy]
todo = "warn"
dbg_macro = "warn"
unnecessary_semicolon = "warn"
explicit_iter_loop = "warn"
semicolon_if_nothing_returned = "warn"