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