-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
65 lines (56 loc) · 1.22 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
60
61
62
63
64
65
[package]
name = "ygo-deck-constructor"
edition.workspace = true
[workspace]
members = ["common", "data-processor"]
[workspace.package]
edition = "2021"
[workspace.dependencies]
bincode = "1.3.3"
itertools = "0.13.0"
rustc-hash = "2.0.0"
serde = "1.0.203"
[dependencies]
bincode.workspace = true
common.path = "common"
console_error_panic_hook = "0.1.7"
gloo-dialogs = "0.2.0"
gloo-file = { version = "0.3.0", features = ["futures"] }
gloo-net = "0.6.0"
itertools.workspace = true
leptos = { version = "0.6.12", features = ["csr"] }
lzma-rs = "0.3.0"
wasm-bindgen = "0.2.92"
web-sys = { version = "0.3.69", features = [
"DataTransfer",
"DragEvent",
"DomRect",
"ResizeObserver",
"ResizeObserverEntry",
"Storage",
] }
[dev-dependencies]
codspeed-criterion-compat = "2.6.0"
console = "0.15.8"
criterion = "0.5.1"
fastrand = "2.1.0"
serde.workspace = true
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
todo = "warn"
dbg_macro = "warn"
empty_docs = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[[bench]]
name = "sizes"
harness = false
[[bench]]
name = "timings"
harness = false