-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (22 loc) · 840 Bytes
/
Cargo.toml
File metadata and controls
27 lines (22 loc) · 840 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
[package]
name = "thesis-algorithm"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
wasm-bindgen = "0.2.84"
js-sys = "0.3.64"
serde = { version = "1.0.162", features = ["derive"] }
console_error_panic_hook = "0.1.6"
wasm-bindgen-futures = "0.4.37"
futures = "0.3.28"
bincode = "1.3.3"
genawaiter = {version = "0.99.1", features = ["futures03"]}
[dependencies.web-sys]
version = "0.3.64"
features = ["console", "Document", "Window", "InputEvent", "HtmlInputElement", "Node", "Element", "Text", "Performance", "Worker","WorkerOptions", "WorkerType", "MessageEvent", "DedicatedWorkerGlobalScope", "Url", "UrlSearchParams", "Location","History", "HtmlTemplateElement", "DocumentFragment"]
[dev-dependencies]
proptest = "1.1.0"
[package.metadata.wasm-pack.profile.profiling]
wasm-opt = ['-O4', '-g']