-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (31 loc) · 1.25 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
[workspace]
members = [
"tui",
"bins/desktop",
"bins/web",
]
[profile.dev]
opt-level = 1
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = "fat"
debug-assertions = false
codegen-units = 1
# target-cpu = "native"
# panic = "abort"
incremental = false
overflow-checks = false
[patch.crates-io]
lc3-application-support = { git = "https://github.com/ut-utp/core", branch = "feat-wasm-support" }
lc3-isa = { git = "https://github.com/ut-utp/core", branch = "feat-wasm-support" }
lc3-macros = { git = "https://github.com/ut-utp/core", branch = "feat-wasm-support" }
lc3-shims = { git = "https://github.com/ut-utp/core", branch = "feat-wasm-support" }
lc3-traits = { git = "https://github.com/ut-utp/core", branch = "feat-wasm-support" }
lc3-os = { git = "https://github.com/ut-utp/core", branch = "feat-wasm-support" }
lc3-assembler = { git = "https://github.com/ut-utp/assembler", branch = "master" }
wasm-bindgen = { git = "https://github.com/rrbutani/wasm-bindgen.git", branch = "patches" }
crossterm = { git = "https://github.com/rrbutani/crossterm", branch = "xtermjs", version = "0.17.5" }
tui = { git = "https://github.com/rrbutani/tui-rs", version = "0.9.5" }
xterm-js-sys = { git = "https://github.com/rrbutani/xterm-js-sys", branch = "main" }