-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
98 lines (92 loc) · 3.02 KB
/
Copy pathCargo.toml
File metadata and controls
98 lines (92 loc) · 3.02 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
[workspace]
resolver = "2"
members = [
"xtask",
"crates/moon-gpui-util",
"crates/moon-gpui-shared-string",
"crates/moon-collections",
"crates/moon-derive-refineable",
"crates/moon-refineable",
"crates/moon-perf",
"crates/moon-util-macros",
"crates/moon-util",
"crates/moon-scheduler",
"crates/moon-sum-tree",
"crates/moon-http-client",
"crates/moon-http-client-tls",
"crates/moon-reqwest-client",
"crates/moon-media",
"crates/moon-gpui-macros",
"crates/moon-gpui",
"crates/moon-gpui-wgpu",
"crates/moon-gpui-macos",
"crates/moon-gpui-linux",
"crates/moon-gpui-windows",
"crates/moon-gpui-web",
"crates/moon-gpui-platform",
"crates/moon-ui",
"crates/moon-ui-gallery",
"crates/moon-ui-components",
"crates/moon-ui-components-assets",
"crates/moon-ui-components-macros",
]
[workspace.package]
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/Moonbot-Tech/MoonUI"
[workspace.dependencies]
gpui-component = { package = "moon-ui-components", path = "crates/moon-ui-components" }
gpui-component-assets = { package = "moon-ui-components-assets", path = "crates/moon-ui-components-assets" }
gpui-component-macros = { package = "moon-ui-components-macros", path = "crates/moon-ui-components-macros" }
gpui = { package = "moon-gpui", path = "crates/moon-gpui" }
gpui_macros = { package = "moon-gpui-macros", path = "crates/moon-gpui-macros" }
gpui_platform = { package = "moon-gpui-platform", path = "crates/moon-gpui-platform", features = ["font-kit", "x11", "wayland", "runtime_shaders"] }
gpui_web = { package = "moon-gpui-web", path = "crates/moon-gpui-web" }
reqwest_client = { package = "moon-reqwest-client", path = "crates/moon-reqwest-client" }
sum-tree = { package = "moon-sum-tree", path = "crates/moon-sum-tree" }
anyhow = "1"
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_lines_lf",
"metric_utf16",
] }
rust-i18n = "4"
schemars = "1"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1"
serde_repr = "0.1"
smallvec = "1"
smol = "2"
tracing = "0.1.41"
wasm-bindgen = "0.2.113"
reqwest = { version = "0.12.15-zed", package = "zed-reqwest", default-features = false, features = [
"charset",
"http2",
"macos-system-configuration",
"multipart",
"rustls-tls-native-roots",
"socks",
"stream",
] }
[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"
useless_conversion = "allow"