Cargo.toml

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