Cargo.toml

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