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", "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 = "0.3"
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"] }
54env_logger = "0.8"
55png = "0.16"
56simplelog = "0.9"
57
58[target.'cfg(target_os = "macos")'.dependencies]
59anyhow = "1"
60block = "0.1"
61cocoa = "0.24"
62core-foundation = "0.9"
63core-graphics = "0.22.2"
64core-text = "19.2"
65font-kit = { git = "https://github.com/zed-industries/font-kit", rev = "8eaf7a918eafa28b0a37dc759e2e0e7683fa24f1" }
66foreign-types = "0.3"
67log = "0.4"
68metal = "0.21.0"
69objc = "0.2"