forked from longbridge/gpui-kit
-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathCargo.toml
More file actions
181 lines (169 loc) · 5.87 KB
/
Copy pathCargo.toml
File metadata and controls
181 lines (169 loc) · 5.87 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
[workspace]
default-members = ["crates/story"]
members = [
"crates/kit",
"crates/base",
"crates/base/examples/wasm",
"crates/base/examples/native",
"crates/component-macros",
"crates/story",
"crates/story-web",
"crates/component",
"crates/assets",
"crates/fps",
"crates/webview",
"examples/app_assets",
"examples/fps_monitor",
"examples/hello_world",
"examples/input",
"examples/editor",
"examples/brush",
"examples/dock",
"examples/html",
"examples/large-text",
"examples/markdown",
"examples/stream-markdown",
"examples/window_title",
"examples/dialog_overlay",
"examples/webview",
"examples/system_monitor",
"examples/focus_trap",
"examples/tooltip_top_edge",
"examples/sidebar",
"examples/text_max_lines",
"examples/text_selection",
"examples/touch_selection",
"examples/table_in_scrollable",
"examples/markdown_table",
"examples/ai_recipes",
"crates/shell",
"crates/shell/rquickjs-compat",
"crates/component-shell",
]
resolver = "2"
[workspace.package]
publish = false
edition = "2024"
[workspace.dependencies]
gpui-kit = { path = "crates/kit", version = "0.6.5" }
gpui-component = { path = "crates/component", version = "0.6.5" }
gpui-base = { path = "crates/base", version = "0.6.5" }
gpui-component-macros = { path = "crates/component-macros", version = "0.6.5" }
gpui-kit-assets = { path = "crates/assets", version = "0.6.5" }
gpui-fps = { path = "crates/fps", version = "0.6.5" }
gpui-shell = { path = "crates/shell", version = "0.6.5" }
gpui-wry = { path = "crates/webview", version = "0.6.5" }
gpui-component-shell = { path = "crates/component-shell", version = "0.6.5" }
story = { path = "crates/story" }
# GPUI comes from the `gpui-pre-*` snapshots of Zed's crates, and any snapshot
# may change GPUI's API. These requirements are what the published gpui-kit
# crates carry to crates.io, so they pin the exact snapshot the release was
# built against: a caret requirement let the weekly release move applications
# onto a newer snapshot that gpui-component did not compile with (#3156). Bump
# every snapshot crate together with its Cargo.lock entry; `script/check-gpui-pin.ts`
# fails CI when a pin is not exact.
gpui = { package = "gpui-pre", version = "=0.3.6" }
gpui_platform = { package = "gpui-pre-platform", version = "=0.3.6", features = ["font-kit", "x11", "wayland", "runtime_shaders"] }
gpui_web = { package = "gpui-pre-web", version = "=0.3.6" }
gpui_macros = { package = "gpui-pre-macros", version = "=0.3.6" }
reqwest_client = { package = "gpui-pre-reqwest-client", version = "=0.3.6" }
sum-tree = { package = "gpui-pre-sum-tree", version = "=0.3.6" }
reqwest = { package = "gpui-pre-reqwest", version = "=0.12.15", default-features = false, features = [
"charset",
"http2",
"macos-system-configuration",
"multipart",
"rustls-tls-native-roots",
"socks",
"stream",
] }
anyhow = "1"
instant = { version = "0.1", features = ["wasm-bindgen"] }
log = "0.4"
lsp-types = { version = "0.97.0", features = ["proposed"] }
notify = "7.0.0"
raw-window-handle = "0.6.2"
ropey = { version = "=2.0.0-beta.1", features = [
"metric_chars",
"metric_lines_lf",
"metric_utf16",
] }
rust-i18n = "4.2.0"
schemars = "1"
semver = "1"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1"
serde_repr = "0.1"
smallvec = "1"
smol = "2"
syntect = { version = "5.3.0", default-features = false, features = [
"parsing",
"default-syntaxes",
"regex-fancy",
] }
tracing = "0.1.41"
wasm-bindgen = "0.2.113"
# Use errno stub for WASM
errno = { version = "0.3.14", default-features = false }
[workspace.dependencies.windows]
features = ["Wdk", "Wdk_System", "Wdk_System_SystemServices"]
version = "0.58.0"
[workspace.lints.clippy]
almost_complete_range = "allow"
arc_with_non_send_sync = "allow"
borrowed_box = "allow"
dbg_macro = "deny"
let_underscore_future = "allow"
manual_is_multiple_of = "allow"
map_entry = "allow"
module_inception = "allow"
non_canonical_partial_ord_impl = "allow"
reversed_empty_ranges = "allow"
single_range_in_vec_init = "allow"
style = { level = "allow", priority = -1 }
todo = "deny"
type_complexity = "allow"
# Temporarily allow this until we can migrate to the new APIs.
# https://github.com/longbridge/gpui-kit/pull/2149
useless_conversion = "allow"
[profile.dev]
codegen-units = 16
debug = "limited"
split-debuginfo = "unpacked"
[profile.dev.package]
resvg = { opt-level = 3 }
rustybuzz = { opt-level = 3 }
taffy = { opt-level = 3 }
ttf-parser = { opt-level = 3 }
smol = { opt-level = 3 }
gpui-pre = { opt-level = 3 }
gpui-pre-platform = { opt-level = 3 }
gpui-pre-macros = { opt-level = 3 }
tree-sitter = { opt-level = 3 }
gpui-pre-sum-tree = { opt-level = 3 }
ropey = { opt-level = 3 }
lsp-types = { opt-level = 3 }
gpui-pre-reqwest-client = { opt-level = 3 }
markdown = { opt-level = 3 }
xml5ever = { opt-level = 3 }
# `quickjs-jit` is a facade that re-exports `quickjs-jit-core`, so naming it alone
# optimises neither the interpreter nor the bindings. `quickjs-jit-sys` builds
# QuickJS itself through `cc`, which reads this package's opt-level; without
# these two a debug build spends roughly three times as long in every script
# render. See `website/shell/hosting.md`.
quickjs-jit = { opt-level = 3 }
quickjs-jit-runtime = { opt-level = 3 }
quickjs-jit-sys = { opt-level = 3 }
quickjs-jit-core = { opt-level = 3 }
cap-std = { opt-level = 3 }
[patch.crates-io]
# LLRT's public modules still name their compatible binding dependency
# `rquickjs`. Route those dependencies through a source-compatible facade so
# the shell and LLRT share the exact same quickjs-jit types and VM.
rquickjs = { path = "crates/shell/rquickjs-compat" }
[workspace.metadata.typos]
files.extend-exclude = ["**/fixtures/*"]
[workspace.metadata.typos.default.extend-identifiers]
consts = "consts"
[workspace.metadata.cargo-machete]
ignored = ["log", "anyhow", "serde"]