-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 847 Bytes
/
Cargo.toml
File metadata and controls
37 lines (34 loc) · 847 Bytes
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
[workspace]
members = [
"core",
"tui",
"web",
]
resolver = "2"
[workspace.dependencies]
anpa = "0.10.0"
bit-set = "0.8.0"
bitflags = "2.4.1"
clap = { version = "4.5.21", features = ["derive"] }
console_error_panic_hook = "0.1"
crossterm = "0.29.0"
dirs = "5.0.1"
ratatui = { version = "0.30.0", default-features = false, features = ["layout-cache"] }
# ratzilla = { path = "../ratzilla" }
ratzilla = { git = "https://github.com/junkdog/ratzilla", branch = "beamterm-latest" }
rectangle-pack = "0.4.2"
tachyonfx = { version = "0.23.0", default-features = false, features = ["std"] }
web-sys = "0.3"
web-time = "1.1"
[profile.release-optimized]
inherits = "release"
lto = true
codegen-units = 1
opt-level = "z"
strip = "symbols"
[profile.wasm-release]
inherits = "release"
opt-level = "s"
lto = true
codegen-units = 1
panic = "abort"