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
20collections.workspace = true
21dirs.workspace = true
22futures.workspace = true
23git2 = { workspace = true, optional = true }
24globset.workspace = true
25log.workspace = true
26rand = {workspace = true, optional = true}
27regex.workspace = true
28rust-embed.workspace = true
29serde.workspace = true
30serde_json.workspace = true
31async-fs.workspace = true
32futures-lite.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
42tempfile.workspace = true
43rand.workspace = true