Cargo.toml

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