mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-14 22:14:23 +00:00
80c14c9198
Some checks are pending
CI / Check formatting and spelling (push) Waiting to run
CI / (macOS) Run Clippy and tests (push) Waiting to run
CI / (Linux) Run Clippy and tests (push) Waiting to run
CI / (Windows) Run Clippy and tests (push) Waiting to run
CI / Create a macOS bundle (push) Blocked by required conditions
CI / Create a Linux bundle (push) Blocked by required conditions
Deploy Docs / Deploy Docs (push) Waiting to run
TODO: - [x] Finish GPUI changes on other operating systems This is a largely internal change to how we report data to our diagnostics and telemetry. This PR also includes an update to our blade backend which allows us to report errors in a more useful way when failing to initialize blade. Release Notes: - N/A --------- Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com>
75 lines
2.1 KiB
TOML
75 lines
2.1 KiB
TOML
[package]
|
|
name = "client"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/client.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = ["clock/test-support", "collections/test-support", "gpui/test-support", "rpc/test-support"]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-recursion = "0.3"
|
|
async-tungstenite = { version = "0.16", features = ["async-std", "async-native-tls"] }
|
|
async-native-tls = { version = "0.5.0", features = ["vendored"] }
|
|
chrono = { workspace = true, features = ["serde"] }
|
|
clock.workspace = true
|
|
collections.workspace = true
|
|
feature_flags.workspace = true
|
|
fs.workspace = true
|
|
futures.workspace = true
|
|
gpui.workspace = true
|
|
http.workspace = true
|
|
lazy_static.workspace = true
|
|
log.workspace = true
|
|
once_cell.workspace = true
|
|
parking_lot.workspace = true
|
|
postage.workspace = true
|
|
rand.workspace = true
|
|
release_channel.workspace = true
|
|
rpc.workspace = true
|
|
schemars.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
settings.workspace = true
|
|
sha2.workspace = true
|
|
smol.workspace = true
|
|
sysinfo.workspace = true
|
|
telemetry_events.workspace = true
|
|
tempfile.workspace = true
|
|
text.workspace = true
|
|
thiserror.workspace = true
|
|
time.workspace = true
|
|
tiny_http = "0.8"
|
|
url.workspace = true
|
|
util.workspace = true
|
|
|
|
[dev-dependencies]
|
|
clock = { workspace = true, features = ["test-support"] }
|
|
collections = { workspace = true, features = ["test-support"] }
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
rpc = { workspace = true, features = ["test-support"] }
|
|
settings = { workspace = true, features = ["test-support"] }
|
|
util = { workspace = true, features = ["test-support"] }
|
|
http = { workspace = true, features = ["test-support"] }
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
windows.workspace = true
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
cocoa.workspace = true
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
async-native-tls = {"version" = "0.5.0", features = ["vendored"]}
|
|
# This is an indirect dependency of async-tungstenite that is included
|
|
# here so we can vendor libssl with the feature flag.
|
|
[package.metadata.cargo-machete]
|
|
ignored = ["async-native-tls"]
|