Cargo.toml

 1[package]
 2name = "util"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "Apache-2.0"
 7
 8[lints]
 9workspace = true
10
11[lib]
12path = "src/util.rs"
13doctest = true
14
15[features]
16test-support = ["tempfile", "git2", "rand"]
17
18[dependencies]
19anyhow.workspace = true
20async-fs.workspace = true
21collections.workspace = true
22dirs.workspace = true
23futures-lite.workspace = true
24futures.workspace = true
25git2 = { workspace = true, optional = true }
26globset.workspace = true
27log.workspace = true
28rand = { workspace = true, optional = true }
29regex.workspace = true
30rust-embed.workspace = true
31serde.workspace = true
32serde_json.workspace = true
33take-until = "0.2.0"
34tempfile = { workspace = true, optional = true }
35unicase.workspace = true
36
37[target.'cfg(windows)'.dependencies]
38tendril = "0.4.3"
39
40[dev-dependencies]
41git2.workspace = true
42rand.workspace = true
43tempfile.workspace = true