-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
66 lines (60 loc) · 1.41 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
66
[package]
name = "metro-map-editor"
authors = ["Calli <me@calli.dev>"]
version = "0.1.0"
edition = "2021"
license = "MIT"
[dependencies]
leptos = { version = "0.7.4", features = ["csr", "nightly"] }
web-sys = { version = "0.3.77", features = [
"KeyboardEvent",
"HtmlCanvasElement",
"HtmlInputElement",
"FileList",
"File",
"Url",
"Blob",
"BlobPropertyBag",
"CanvasRenderingContext2d",
"CssStyleDeclaration",
"Element",
"Window",
"FocusEvent",
"OffscreenCanvasRenderingContext2d",
"OffscreenCanvas",
"ImageEncodeOptions",
] }
js-sys = "0.3.77"
wasm-bindgen = { version = "0.2.100" }
console_log = "1"
log = "0.4"
console_error_panic_hook = "0.1"
quick-xml = { version = "0.37", features = ["serialize"] }
serde_json = "1.0"
serde = { version = "1", features = ["derive"] }
csscolorparser = "0.7"
rand = "0.8"
priority-queue = "2.1"
ordered-float = "4.6"
itertools = "0.14"
leptos_workers = "0.2.2"
futures-core = "0.3"
futures-util = "0.3"
futures-test = "0.3"
wasm-bindgen-futures = "0.4"
gloo-timers = { version = "0.3.0", features = ["futures"] }
rayon = { version = "1.10", optional = true }
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
[features]
default = []
benchmarking = []
heatmap = ["rayon"]
[[bench]]
name = "map_algo_benchmarks"
harness = false
[[bench]]
name = "draw_benchmarks"
harness = false
[profile.bench]
debug = true