mirror of
https://github.com/enso-org/enso.git
synced 2024-12-25 16:22:36 +03:00
99b0c46d87
Split all the EnsoGL components, examples and debug scenes to separate crates, so the work on the single component should be quicker than before.
18 lines
475 B
TOML
18 lines
475 B
TOML
[package]
|
|
name = "ensogl-example-drop-manager"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
edition = "2018"
|
|
|
|
[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 = { version = "=0.2.58", features = [ "nightly" ] }
|
|
wasm-bindgen-futures = { version = "0.4.8" }
|