Cargo.toml

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