mirror of
https://github.com/enso-org/enso.git
synced 2024-12-22 23:31:42 +03:00
29 lines
790 B
TOML
29 lines
790 B
TOML
[package]
|
|
name = "enso-shortcuts-examples"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
enso-automata = { path = "../../automata" }
|
|
enso-prelude = { path = "../../prelude" }
|
|
enso-frp = { path = "../../frp" }
|
|
enso-shortcuts = { path = "../../shortcuts" }
|
|
enso-web = { path = "../../web" }
|
|
wasm-bindgen = { workspace = true }
|
|
nalgebra = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
js-sys = { workspace = true }
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3.4"
|
|
features = []
|
|
|
|
# Stop wasm-pack from running wasm-opt, because we run it from our build scripts in order to customize options.
|
|
[package.metadata.wasm-pack.profile.release]
|
|
wasm-opt = false
|