zed/zed/Cargo.toml

56 lines
1.2 KiB
TOML
Raw Normal View History

[package]
authors = ["Nathan Sobo <nathansobo@gmail.com>"]
description = "The fast, collaborative code editor."
edition = "2018"
name = "zed"
version = "0.1.0"
2021-03-10 04:00:51 +00:00
[lib]
name = "zed"
path = "src/lib.rs"
[[bin]]
name = "Zed"
2021-03-10 04:00:51 +00:00
path = "src/main.rs"
[dependencies]
2021-03-10 04:00:51 +00:00
anyhow = "1.0.38"
arrayvec = "0.5.2"
crossbeam-channel = "0.5.0"
ctor = "0.1.20"
dirs = "3.0"
easy-parallel = "3.1.0"
fsevent = {path = "../fsevent"}
futures-core = "0.3"
gpui = {path = "../gpui"}
ignore = "0.4"
2021-03-10 04:00:51 +00:00
lazy_static = "1.4.0"
libc = "0.2"
log = "0.4"
num_cpus = "1.13.0"
parking_lot = "0.11.1"
2021-04-13 20:51:49 +00:00
postage = {version = "0.4.1", features = ["futures-traits"]}
2021-03-10 04:00:51 +00:00
rand = "0.8.3"
rust-embed = "5.9.0"
2021-04-08 14:57:46 +00:00
seahash = "4.1"
serde = {version = "1", features = ["derive"]}
similar = "1.3"
simplelog = "0.9"
smallvec = {version = "1.6", features = ["union"]}
smol = "1.2.5"
tree-sitter = "0.19.5"
tree-sitter-rust = "0.19.0"
[dev-dependencies]
cargo-bundle = "0.5.0"
env_logger = "0.8"
serde_json = {version = "1.0.64", features = ["preserve_order"]}
2021-03-18 21:52:46 +00:00
tempdir = "0.3.7"
unindent = "0.1.7"
[package.metadata.bundle]
icon = ["app-icon@2x.png", "app-icon.png"]
identifier = "dev.zed.Zed"
name = "Zed"
osx_minimum_system_version = "10.14"