mirror of
https://github.com/enso-org/enso.git
synced 2024-12-26 18:52:46 +03:00
21 lines
643 B
TOML
21 lines
643 B
TOML
[package]
|
|
name = "ensogl-example-slider"
|
|
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-hardcoded-theme = { path = "../../app/theme/hardcoded" }
|
|
ensogl-text-msdf = { path = "../../component/text/src/font/msdf" }
|
|
ensogl-slider = { path = "../../component/slider" }
|
|
wasm-bindgen = { workspace = true }
|
|
|
|
# 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
|