1[package]
2authors = ["Nathan Sobo <nathansobo@gmail.com>"]
3edition = "2018"
4name = "zed"
5version = "0.1.0"
6
7[lib]
8name = "zed"
9path = "src/lib.rs"
10
11[[bin]]
12name = "Zed"
13path = "src/main.rs"
14
15[dependencies]
16anyhow = "1.0.38"
17arrayvec = "0.5.2"
18crossbeam-channel = "0.5.0"
19dirs = "3.0"
20easy-parallel = "3.1.0"
21futures-core = "0.3"
22gpui = {path = "../gpui"}
23ignore = {git = "https://github.com/zed-industries/ripgrep", rev = "1d152118f35b3e3590216709b86277062d79b8a0"}
24lazy_static = "1.4.0"
25libc = "0.2"
26log = "0.4"
27num_cpus = "1.13.0"
28parking_lot = "0.11.1"
29postage = {version = "0.4.1", features = ["futures-traits"]}
30rand = "0.8.3"
31rust-embed = "5.9.0"
32seahash = "4.1"
33simplelog = "0.9"
34serde = { version = "1", features = ["derive"] }
35smallvec = "1.6.1"
36smol = "1.2.5"
37
38[dev-dependencies]
39serde_json = {version = "1.0.64", features = ["preserve_order"]}
40tempdir = "0.3.7"
41unindent = "0.1.7"