Cargo.toml

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