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