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
31rust-embed.workspace = true
32serde.workspace = true
33serde_json.workspace = true
34smol.workspace = true
35take-until = "0.2.0"
36tempfile = { workspace = true, optional = true }
37unicase.workspace = true
38url.workspace = true
39
40[target.'cfg(windows)'.dependencies]
41tendril = "0.4.3"
42
43[dev-dependencies]
44git2.workspace = true
45tempfile.workspace = true