1[package]
2authors = ["Nathan Sobo <nathansobo@gmail.com>"]
3description = "The fast, collaborative code editor."
4edition = "2018"
5name = "zed"
6version = "0.1.0"
7
8[lib]
9name = "zed"
10path = "src/lib.rs"
11
12[[bin]]
13name = "Zed"
14path = "src/main.rs"
15
16[dependencies]
17anyhow = "1.0.38"
18arrayvec = "0.5.2"
19crossbeam-channel = "0.5.0"
20ctor = "0.1.20"
21dirs = "3.0"
22easy-parallel = "3.1.0"
23fsevent = {path = "../fsevent"}
24futures-core = "0.3"
25gpui = {path = "../gpui"}
26ignore = "0.4"
27lazy_static = "1.4.0"
28libc = "0.2"
29log = "0.4"
30num_cpus = "1.13.0"
31parking_lot = "0.11.1"
32postage = {version = "0.4.1", features = ["futures-traits"]}
33rand = "0.8.3"
34rust-embed = "5.9.0"
35seahash = "4.1"
36serde = {version = "1", features = ["derive"]}
37simplelog = "0.9"
38smallvec = "1.6.1"
39smol = "1.2.5"
40
41[dev-dependencies]
42cargo-bundle = "0.5.0"
43env_logger = "0.8"
44serde_json = {version = "1.0.64", features = ["preserve_order"]}
45tempdir = "0.3.7"
46unindent = "0.1.7"
47
48[package.metadata.bundle]
49icon = ["app-icon@2x.png", "app-icon.png"]
50identifier = "dev.zed.Zed"
51name = "Zed"