Cargo.toml

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