-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (34 loc) · 1009 Bytes
/
Cargo.toml
File metadata and controls
42 lines (34 loc) · 1009 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "gpui-flow"
version = "0.1.0"
edition = "2024"
description = "A node-based flow graph editor for GPUI, inspired by React Flow / xyflow."
license = "MIT"
repository = "https://github.com/pacifio/gpui-flow"
homepage = "https://github.com/pacifio/gpui-flow"
readme = "README.md"
keywords = ["gpui", "flow", "graph", "node-editor", "react-flow"]
categories = ["gui", "graphics"]
[dependencies]
gpui = { git = "https://github.com/zed-industries/zed", package = "gpui" }
[dev-dependencies]
gpui_macos = { git = "https://github.com/zed-industries/zed", package = "gpui_macos", features = ["font-kit"] }
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "mindmap"
path = "examples/mindmap.rs"
[[example]]
name = "stress"
path = "examples/stress.rs"
[profile.dev]
debug = "limited"
split-debuginfo = "unpacked"
opt-level = 1
[profile.dev.package]
gpui = { opt-level = 3 }
gpui_macos = { opt-level = 3 }
taffy = { opt-level = 3 }
[lints.clippy]
type_complexity = "allow"