Research-Stack/2-Search-Space/search/stract/crates/client-wasm/Cargo.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)',
] }