-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (43 loc) · 1.18 KB
/
Cargo.toml
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
[workspace]
resolver = "2" # Important! wgpu needs this!
default-members = ["crates/virus"]
members = ["crates/*"]
exclude = ["xtask"]
[workspace.package]
authors = ["Romain TRUCHI"]
edition = "2021"
[workspace.dependencies]
virus-editor = { path = "crates/editor", package = "editor" }
virus-graphics = { path = "crates/graphics", package = "graphics" }
virus-lsp = { path = "crates/lsp", package = "lsp" }
virus-ui = { path = "crates/ui", package = "ui" }
bytemuck = "1.16"
futures = "0.3"
ignore = "0.4"
image = { version = "0.25", default-features = false, features = ["png"] }
pollster = "0.3"
ropey = "1.6"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
swash = "0.1"
tokio = { version = "1.38", features = ["full"] }
tree-sitter = "0.22"
tree-sitter-rust = "0.21"
tween = "2.0"
unicode-segmentation = "1.11"
unicode-width = "0.1"
url = "2.5"
wgpu = "0.20"
winit = "0.30"
[profile.dev]
# Remove debug stuff in the binary
debug = false
strip = true
# Trying to improve dev performance, but I don't see any effects...
[profile.dev.package."*"]
debug = false
strip = true
opt-level = 3
debug-assertions = false
overflow-checks = false
codegen-units = 16