-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (39 loc) · 1.02 KB
/
Copy pathCargo.toml
File metadata and controls
42 lines (39 loc) · 1.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
[workspace]
members = [
"crates/xb-frontend",
"crates/xb-compiler",
"crates/xb-runtime",
"crates/xb-link",
"crates/xb-cli",
"crates/xb-gui",
"crates/xb-ide",
]
resolver = "2"
[workspace.package]
version = "6.5.0-alpha.0"
edition = "2021"
rust-version = "1.94"
authors = ["XBasic Remake contributors"]
repository = "https://example.invalid/xbasic-remake"
publish = false
[workspace.dependencies]
xb-frontend = { path = "crates/xb-frontend" }
xb-compiler = { path = "crates/xb-compiler" }
xb-runtime = { path = "crates/xb-runtime" }
xb-link = { path = "crates/xb-link" }
xb-gui = { path = "crates/xb-gui" }
thiserror = "2.0.17"
libc = "0.2.189"
rustix = "1.1.4"
memmap2 = "0.9.11"
socket2 = "0.6.5"
libloading = "0.9.0"
cc = "1.4.2"
windows-sys = "0.61.2"
inkwell = { version = "0.10.0", features = ["llvm22-1"], default-features = false }
egui = "0.36.1"
eframe = { version = "0.36.1", default-features = false, features = ["default_fonts", "glow"] }
egui_code_editor = "0.3.8"
egui_dock = "0.21.1"
winit = "0.30.13"
sha2 = "0.10"