Cargo.toml

 1[package]
 2authors = ["Nathan Sobo <nathansobo@gmail.com>"]
 3edition = "2018"
 4name = "gpui"
 5version = "0.1.0"
 6
 7[dependencies]
 8async-task = "4.0.3"
 9backtrace = "0.3"
10ctor = "0.1"
11etagere = "0.2"
12gpui_macros = { path = "../gpui_macros" }
13log = "0.4"
14num_cpus = "1.13"
15ordered-float = "2.1.1"
16parking = "2.0.0"
17parking_lot = "0.11.1"
18pathfinder_color = "0.5"
19pathfinder_geometry = "0.5"
20postage = { version = "0.4.1", features = ["futures-traits"] }
21rand = "0.8.3"
22replace_with = "0.1.7"
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"