mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 15:44:31 +03:00
f5ba22659b
Co-authored-by: Mikayla <mikayla@zed.dev>
36 lines
675 B
TOML
36 lines
675 B
TOML
[package]
|
|
name = "util"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/util.rs"
|
|
doctest = true
|
|
|
|
[features]
|
|
test-support = ["tempdir", "git2"]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
backtrace = "0.3"
|
|
globset.workspace = true
|
|
log.workspace = true
|
|
lazy_static.workspace = true
|
|
futures.workspace = true
|
|
isahc.workspace = true
|
|
smol.workspace = true
|
|
url = "2.2"
|
|
rand.workspace = true
|
|
rust-embed.workspace = true
|
|
tempdir = { workspace = true, optional = true }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
git2 = { workspace = true, optional = true }
|
|
dirs = "3.0"
|
|
take-until = "0.2.0"
|
|
|
|
[dev-dependencies]
|
|
tempdir.workspace = true
|
|
git2.workspace = true
|