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_lot = "0.11.1"
17pathfinder_color = "0.5"
18pathfinder_geometry = "0.5"
19postage = { version = "0.4.1", features = ["futures-traits"] }
20rand = "0.8.3"
21replace_with = "0.1.7"
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"
31
32[build-dependencies]
33bindgen = "0.58.1"
34cc = "1.0.67"
35
36[dev-dependencies]
37env_logger = "0.8"
38png = "0.16"
39simplelog = "0.9"
40
41[target.'cfg(target_os = "macos")'.dependencies]
42anyhow = "1"
43block = "0.1"
44cocoa = "0.24"
45core-foundation = "0.9"
46core-graphics = "0.22.2"
47core-text = "19.2"
48font-kit = { git = "https://github.com/zed-industries/font-kit", rev = "8eaf7a918eafa28b0a37dc759e2e0e7683fa24f1" }
49foreign-types = "0.3"
50log = "0.4"
51metal = "0.21.0"
52objc = "0.2"