forked from longbridge/gpui-kit
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathCargo.toml
More file actions
157 lines (146 loc) · 4.76 KB
/
Copy pathCargo.toml
File metadata and controls
157 lines (146 loc) · 4.76 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
[workspace]
default-members = ["crates/story"]
members = [
"crates/kit",
"crates/base",
"crates/base/examples/wasm",
"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/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/root_borderless",
"examples/table_in_scrollable",
"examples/markdown_table",
"crates/shell",
"crates/component-shell",
]
resolver = "2"
[workspace.package]
publish = false
edition = "2024"
[workspace.dependencies]
gpui-kit = { path = "crates/kit", version = "0.6.0" }
gpui-component = { path = "crates/component", version = "0.6.0" }
gpui-base = { path = "crates/base", version = "0.6.0" }
gpui-component-macros = { path = "crates/component-macros", version = "0.6.0" }
gpui-kit-assets = { path = "crates/assets", version = "0.6.0" }
gpui-fps = { path = "crates/fps", version = "0.6.0" }
gpui-shell = { path = "crates/shell", version = "0.6.0" }
gpui-wry = { path = "crates/webview", version = "0.6.0" }
gpui-component-shell = { path = "crates/component-shell", version = "0.6.0" }
story = { path = "crates/story" }
gpui = { package = "gpui-pre", version = "0.3.1" }
gpui_platform = { package = "gpui-pre-platform", version = "0.3.1", features = ["font-kit", "x11", "wayland", "runtime_shaders"] }
gpui_web = { package = "gpui-pre-web", version = "0.3.1" }
gpui_macros = { package = "gpui-pre-macros", version = "0.3.1" }
reqwest_client = { package = "gpui-pre-reqwest-client", version = "0.3.1" }
sum-tree = { package = "gpui-pre-sum-tree", version = "0.3.1" }
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 }
# `rquickjs` is a facade that re-exports `rquickjs-core`, so naming it alone
# optimises neither the interpreter nor the bindings. `rquickjs-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`.
rquickjs = { opt-level = 3 }
rquickjs-sys = { opt-level = 3 }
rquickjs-core = { opt-level = 3 }
cap-std = { opt-level = 3 }
[workspace.metadata.typos]
files.extend-exclude = ["**/fixtures/*"]
[workspace.metadata.typos.default.extend-identifiers]
consts = "consts"
[workspace.metadata.cargo-machete]
ignored = ["log", "anyhow", "serde"]