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" }
14log = "0.4"
15num_cpus = "1.13"
16ordered-float = "2.1.1"
17parking = "2.0.0"
18parking_lot = "0.11.1"
19pathfinder_color = "0.5"
20pathfinder_geometry = "0.5"
21postage = { version = "0.4.1", features = ["futures-traits"] }
22rand = "0.8.3"
23resvg = "0.14"
24seahash = "4.1"
25serde = { version = "1.0.125", features = ["derive"] }
26serde_json = "1.0.64"
27smallvec = { version = "1.6", features = ["union"] }
28smol = "1.2"
29tiny-skia = "0.5"
30tree-sitter = "0.19"
31usvg = "0.14"
32waker-fn = "1.1.0"
33
34[build-dependencies]
35bindgen = "0.58.1"
36cc = "1.0.67"
37
38[dev-dependencies]
39env_logger = "0.8"
40png = "0.16"
41simplelog = "0.9"
42
43[target.'cfg(target_os = "macos")'.dependencies]
44anyhow = "1"
45block = "0.1"
46cocoa = "0.24"
47core-foundation = "0.9"
48core-graphics = "0.22.2"
49core-text = "19.2"
50font-kit = { git = "https://github.com/zed-industries/font-kit", rev = "8eaf7a918eafa28b0a37dc759e2e0e7683fa24f1" }
51foreign-types = "0.3"
52log = "0.4"
53metal = "0.21.0"
54objc = "0.2"