mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
36 lines
780 B
TOML
36 lines
780 B
TOML
[package]
|
|
authors = ['Stract <hello@stract.com>']
|
|
edition = "2021"
|
|
license = "AGPL-3.0"
|
|
name = "client-wasm"
|
|
publish = false
|
|
version = "0.1.0"
|
|
|
|
[package.metadata.wasm-pack.profile.release]
|
|
wasm-opt = false
|
|
|
|
[package.metadata.wasm-pack.profile.dev]
|
|
wasm-opt = false
|
|
|
|
[package.metadata.wasm-pack.profile.profiling]
|
|
wasm-opt = false
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
bincode.workspace = true
|
|
js-sys.workspace = true
|
|
optics = { path = "../optics" }
|
|
serde-wasm-bindgen.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
thiserror.workspace = true
|
|
wasm-bindgen.workspace = true
|
|
|
|
|
|
# https://github.com/rustwasm/wasm-bindgen/issues/4283
|
|
[lints.rust]
|
|
unexpected_cfgs = { level = "warn", check-cfg = [
|
|
'cfg(wasm_bindgen_unstable_test_coverage)',
|
|
] }
|