mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 03:14:56 +07:00
33 lines
691 B
TOML
33 lines
691 B
TOML
[package]
|
|
name = "crashes"
|
|
version = "0.1.0"
|
|
publish.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[dependencies]
|
|
futures.workspace = true
|
|
log.workspace = true
|
|
parking_lot.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
[target.'cfg(not(target_os = "freebsd"))'.dependencies]
|
|
async-process.workspace = true
|
|
crash-handler.workspace = true
|
|
minidumper.workspace = true
|
|
paths.workspace = true
|
|
system_specs.workspace = true
|
|
zstd.workspace = true
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
mach2.workspace = true
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
windows.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|