mirror of
https://github.com/enso-org/enso.git
synced 2024-12-18 22:21:48 +03:00
64043323e8
Implements https://github.com/enso-org/enso/issues/5931. https://user-images.githubusercontent.com/1428930/228532453-2032b376-1aa5-4140-8331-be37e4e675d4.mp4 # Important Notes Not functional yet, as it needs integration with the engine.
43 lines
1.7 KiB
TOML
43 lines
1.7 KiB
TOML
[package]
|
|
name = "ide-view"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
ast = { path = "../language/ast/impl" }
|
|
parser = { path = "../language/parser" }
|
|
enso-config = { path = "../config" }
|
|
enso-frp = { path = "../../../lib/rust/frp" }
|
|
enso-prelude = { path = "../../../lib/rust/prelude" }
|
|
enso-shapely = { path = "../../../lib/rust/shapely" }
|
|
engine-protocol = { path = "../controller/engine-protocol" }
|
|
ensogl = { path = "../../../lib/rust/ensogl" }
|
|
ensogl-component = { path = "../../../lib/rust/ensogl/component" }
|
|
ensogl-derive-theme = { path = "../../../lib/rust/ensogl/app/theme/derive" }
|
|
ensogl-gui-component = { path = "../../../lib/rust/ensogl/component/gui" }
|
|
ensogl-text = { path = "../../../lib/rust/ensogl/component/text" }
|
|
ensogl-text-msdf = { path = "../../../lib/rust/ensogl/component/text/src/font/msdf" }
|
|
ensogl-hardcoded-theme = { path = "../../../lib/rust/ensogl/app/theme/hardcoded" }
|
|
ide-view-component-browser = { path = "component-browser" }
|
|
ide-view-execution-mode-selector = { path = "execution-mode-selector" }
|
|
ide-view-documentation = { path = "documentation" }
|
|
ide-view-graph-editor = { path = "graph-editor" }
|
|
span-tree = { path = "../language/span-tree" }
|
|
js-sys = { workspace = true }
|
|
multi-map = { workspace = true }
|
|
nalgebra = { workspace = true }
|
|
ordered-float = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
uuid = { version = "0.8", features = ["serde", "v4", "wasm-bindgen"] }
|
|
wasm-bindgen = { workspace = true }
|
|
welcome-screen = { path = "welcome-screen" }
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3.4"
|
|
features = []
|