-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
59 lines (52 loc) · 1.48 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
49
50
51
52
53
54
55
56
57
58
59
[workspace]
resolver = "2"
members = ["emulator", "cli", "web"]
[workspace.package]
description = "An emulator for the Zorglub-33 architecture"
homepage = "https://pdagog.gitlab.io/ens/z33refcard.pdf"
repository = "https://github.com/sandhose/z33-emulator"
version = "0.6.0"
authors = ["Quentin Gliech <[email protected]>"]
edition = "2021"
readme = "README.md"
license = "MIT"
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
module_name_repetitions = "allow"
[workspace.dependencies]
anstyle = "1.0.8"
anyhow = "1.0.89"
bitflags = "2.6.0"
camino = { version = "1.1.9", features = ["serde1"] }
clap = { version = "4.5.17", features = ["derive"] }
clap_complete = "4.5.28"
console_error_panic_hook = "0.1.7"
indoc = "2.0.5"
insta = "1.40.0"
js-sys = "0.3.70"
miette = "7.2.0"
nom = "7.1.3"
parse-display = "0.10.0"
pretty_assertions = "1.4.1"
rustyline = "14.0.0"
rustyline-derive = "0.10.0"
serde = { version = "1.0.210", features = ["derive"] }
serde-wasm-bindgen = "0.5.0"
shell-words = "1.1.0"
thiserror = "1.0.63"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }
tracing-wasm = "0.2.1"
tsify = { version = "0.4.5", features = ["js"], default-features = false }
unicode-segmentation = "1.12.0"
wasm-bindgen = "0.2.93"
z33-emulator = { path = "emulator" }
[profile.release]
lto = true
panic = "abort"
opt-level = "z"
strip = true
codegen-units = 1