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"]
17
18[dependencies]
19anyhow.workspace = true
20collections.workspace = true
21dirs = "3.0"
22futures.workspace = true
23git2 = { workspace = true, optional = true }
24globset.workspace = true
25lazy_static.workspace = true
26log.workspace = true
27rand.workspace = true
28regex.workspace = true
29rust-embed.workspace = true
30serde.workspace = true
31serde_json.workspace = true
32async-fs.workspace = true
33futures-lite.workspace = true
34take-until = "0.2.0"
35tempfile = { workspace = true, optional = true }
36unicase.workspace = true
37
38[target.'cfg(windows)'.dependencies]
39tendril = "0.4.3"
40
41[dev-dependencies]
42git2.workspace = true
43tempfile.workspace = true