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