mirror of
https://github.com/enso-org/enso.git
synced 2024-12-27 21:12:48 +03:00
21 lines
620 B
TOML
21 lines
620 B
TOML
[package]
|
|
name = "ensogl-example-drop-manager"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
enso-frp = { path = "../../../frp" }
|
|
ensogl-core = { path = "../../core" }
|
|
ensogl-drop-manager = { path = "../../component/drop-manager" }
|
|
enso-prelude = { path = "../../../prelude" }
|
|
wasm-bindgen = { workspace = true }
|
|
wasm-bindgen-futures = { version = "0.4.8" }
|
|
|
|
# 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
|