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"
28itertools = "0.10"
29lazy_static = "1.4.0"
30log = { version = "0.4.16", features = ["kv_unstable_serde"] }
31num_cpus = "1.13"
32ordered-float = "2.1.1"
33parking = "2.0.0"
34parking_lot = "0.11.1"
35pathfinder_color = "0.5"
36pathfinder_geometry = "0.5"
37postage = { version = "0.4.1", features = ["futures-traits"] }
38rand = "0.8.3"
39resvg = "0.14"
40seahash = "4.1"
41serde = { version = "1.0", features = ["derive", "rc"] }
42serde_json = "1.0"
43smallvec = { version = "1.6", features = ["union"] }
44smol = "1.2"
45time = { version = "0.3", features = ["serde", "serde-well-known"] }
46tiny-skia = "0.5"
47tree-sitter = "0.20"
48usvg = "0.14"
49waker-fn = "1.1.0"
50
51[build-dependencies]
52bindgen = "0.59.2"
53cc = "1.0.67"
54
55[dev-dependencies]
56backtrace = "0.3"
57collections = { path = "../collections", features = ["test-support"] }
58dhat = "0.3"
59env_logger = "0.9"
60png = "0.16"
61simplelog = "0.9"
62
63[target.'cfg(target_os = "macos")'.dependencies]
64media = { path = "../media" }
65anyhow = "1"
66block = "0.1"
67cocoa = "0.24"
68core-foundation = "0.9.3"
69core-graphics = "0.22.3"
70core-text = "19.2"
71font-kit = { git = "https://github.com/zed-industries/font-kit", rev = "8eaf7a918eafa28b0a37dc759e2e0e7683fa24f1" }
72foreign-types = "0.3"
73log = { version = "0.4.16", features = ["kv_unstable_serde"] }
74metal = "0.21.0"
75objc = "0.2"