-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (37 loc) · 913 Bytes
/
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
[package]
name = "liquid_go"
version = "0.1.0"
authors = ["Aaron Kriegman <[email protected]>"]
categories = ["wasm"]
readme = "README.md"
edition = "2021"
[lib]
crate-type = ["cdylib"]
[profile.dev]
lto = true
opt-level = 3
[profile.release]
lto = true
panic = "abort"
[features]
# default = ["wee_alloc"]
# default = ["show_liberties"]
show_liberties = []
[dependencies]
union-find = "0.3.3"
# binary-heap-plus = "0.4.1"
rstar = "0.9.2"
wasm-bindgen = "0.2.78"
# compare = "0.1.0"
wee_alloc = { version = "0.4.5", optional = true }
# This should be a debug only dependency, but cargo does not support this feature >:(
console_error_panic_hook = "0.1.7"
# [dependencies.web-sys]
# version = "0.3.55"
# features = []
# NOTE: Correct the version numbers before uncommenting.
# [dev-dependencies]
# wasm-bindgen-test = "0.2.45"
# futures = "0.1.27"
# js-sys = "0.3.22"
# wasm-bindgen-futures = "0.3.22"