Cargo.toml

 1[package]
 2authors = ["Nathan Sobo <nathansobo@gmail.com>"]
 3edition = "2018"
 4name = "gpui"
 5version = "0.1.0"
 6
 7[features]
 8test-support = []
 9
10[dependencies]
11async-task = "4.0.3"
12backtrace = "0.3"
13ctor = "0.1"
14etagere = "0.2"
15gpui_macros = { path = "../gpui_macros" }
16image = "0.23"
17lazy_static = "1.4.0"
18log = "0.4"
19num_cpus = "1.13"
20ordered-float = "2.1.1"
21parking = "2.0.0"
22parking_lot = "0.11.1"
23pathfinder_color = "0.5"
24pathfinder_geometry = "0.5"
25postage = { version = "0.4.1", features = ["futures-traits"] }
26rand = "0.8.3"
27resvg = "0.14"
28seahash = "4.1"
29serde = { version = "1.0.125", features = ["derive"] }
30serde_json = "1.0.64"
31smallvec = { version = "1.6", features = ["union"] }
32smol = "1.2"
33sum_tree = { path = "../sum_tree" }
34time = { version = "0.3" }
35tiny-skia = "0.5"
36tree-sitter = "0.19"
37usvg = "0.14"
38waker-fn = "1.1.0"
39
40[build-dependencies]
41bindgen = "0.58.1"
42cc = "1.0.67"
43
44[dev-dependencies]
45env_logger = "0.8"
46png = "0.16"
47simplelog = "0.9"
48
49[target.'cfg(target_os = "macos")'.dependencies]
50anyhow = "1"
51block = "0.1"
52cocoa = "0.24"
53core-foundation = "0.9"
54core-graphics = "0.22.2"
55core-text = "19.2"
56font-kit = { git = "https://github.com/zed-industries/font-kit", rev = "8eaf7a918eafa28b0a37dc759e2e0e7683fa24f1" }
57foreign-types = "0.3"
58log = "0.4"
59metal = "0.21.0"
60objc = "0.2"