2021-11-30 14:27:50 +03:00
|
|
|
[package]
|
|
|
|
name = "ensogl-example-animation"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Enso Team <contact@enso.org>"]
|
2021-12-01 18:06:57 +03:00
|
|
|
edition = "2021"
|
2021-11-30 14:27:50 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
enso-frp = { path = "../../../frp" }
|
|
|
|
ensogl-core = { path = "../../core" }
|
2022-08-27 01:25:34 +03:00
|
|
|
ensogl-text-msdf = { path = "../../component/text/src/font/msdf" }
|
2021-11-30 14:27:50 +03:00
|
|
|
enso-prelude = { path = "../../../prelude" }
|
2022-12-14 00:20:25 +03:00
|
|
|
wasm-bindgen = { workspace = true }
|
2022-09-23 23:01:06 +03:00
|
|
|
|
|
|
|
# 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
|