zed/crates/util/Cargo.toml
Conrad Irwin dfbcaf36fc
nightly url setting (#7037)
Release Notes:

- Added the ability to set settings per-release stage
- Added a `"server_url"` setting
2024-01-30 11:35:07 -07:00

40 lines
786 B
TOML

[package]
name = "util"
version = "0.1.0"
edition = "2021"
publish = false
license = "Apache-2.0"
[lib]
path = "src/util.rs"
doctest = true
[features]
test-support = ["tempfile", "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
tempfile = { workspace = true, optional = true }
serde.workspace = true
serde_json.workspace = true
git2 = { workspace = true, optional = true }
dirs = "3.0"
take-until = "0.2.0"
parking_lot.workspace = true
[target.'cfg(windows)'.dependencies]
tendril = "0.4.3"
[dev-dependencies]
tempfile.workspace = true
git2.workspace = true