enso/lib/rust/shortcuts/Cargo.toml
Michał Wawrzyniec Urbańczyk 965d1ff28b
Bump wasm-bindgen (#3971)
This PR brings wasm-bindgen (and related crates) to the latest version. I've also removed patching code, so future updates should be much easier.
2022-12-13 22:20:25 +01:00

25 lines
620 B
TOML

[package]
name = "enso-shortcuts"
version = "0.1.0"
authors = ["Enso Team <contact@enso.org>"]
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
enso-automata = { path = "../automata" }
enso-frp = { path = "../frp" }
enso-logger = { path = "../logger" }
enso-prelude = { path = "../prelude" }
enso-web = { path = "../web" }
wasm-bindgen = { workspace = true }
nalgebra = { version = "0.26.1", features = ["serde-serialize"] }
serde_json = { version = "1.0" }
serde = { version = "1.0", features = ["derive"] }
js-sys = { version = "0.3.28" }
[dependencies.web-sys]
version = "0.3.4"
features = []