-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
84 lines (76 loc) · 2.16 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
[package]
name = "yolk_dots"
authors = ["ElKowar <dev@elkowar.dev>"]
description = "Templated dotfile management without template files"
version = "0.1.0"
edition = "2021"
repository = "https://github.com/elkowar/yolk"
homepage = "https://elkowar.github.io/yolk"
license = "MIT OR Apache-2.0"
documentation = "https://elkowar.github.io/yolk/book"
categories = ["config", "command-line-utilities", "template-engine"]
[[bin]]
name = "yolk"
path = "src/main.rs"
[lib]
name = "yolk"
path = "src/lib.rs"
[dependencies]
cached = { version = "0.54.0", default-features = false }
clap = { version = "4.5.21", features = ["derive", "env"] }
dirs = "5.0.1"
dunce = "1.0.5"
edit = "0.1.5"
extend = "1.2.0"
fs-err = "3.0.0"
glob = "0.3.1"
indoc = "2.0.5"
maplit = "1.0.2"
miette = { version = "7.4.0", features = ["fancy"] }
normalize-path = "0.2.1"
notify = "7.0.0"
notify-debouncer-full = "0.4.0"
owo-colors = { version = "4.1.0", features = ["supports-colors"] }
regex = "1.11.1"
rhai = { version = "1.20.0", features = [
"std",
"internals",
"no_custom_syntax",
"sync",
], default-features = false }
tracing = "0.1.40"
rhai-autodocs = { version = "0.7.0", optional = true }
thiserror = "1.0.69"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
which = "7.0.0"
whoami = "1.5.2"
winnow = { version = "0.6.20", features = ["unstable-recover"] }
cov-mark = "2.0.0"
arbitrary = { version = "1.4.1", features = ["derive"] }
symlink = "0.1.0"
# rhai-autodocs = { version = "0.7.0", path = "../../clones/rhai-autodocs" }
[dev-dependencies]
pretty_assertions = "1.4.1"
rstest = { version = "0.23.0", default-features = false }
# tracing-tree = "0.4.0"
assert_fs = "1.1.2"
insta = { version = "1.41.1", default-features = false, features = [
"colors",
"redactions",
"filters",
] }
predicates = "3.1.2"
test-log = { version = "0.2.16", default-features = false, features = [
"color",
"trace",
] }
[profile.dev.package]
insta = { opt-level = 3 }
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
[features]
docgen = ["rhai-autodocs", "rhai/metadata"]
# [workspace.metadata.dist.dependencies.apt]
# "musl-tools" = "*"