mirror of
https://github.com/enso-org/enso.git
synced 2024-12-19 04:01:46 +03:00
e6b7d5b8fc
Design, integration and bugfix update for the List Panel View. ![image](https://user-images.githubusercontent.com/1428930/175554745-c4887d55-a885-4299-878b-4727f09a7520.png) ![image](https://user-images.githubusercontent.com/1428930/175554906-837db815-948d-4407-8233-10a15e4198b3.png) ![image](https://user-images.githubusercontent.com/1428930/175555165-bcbe5138-8e5c-416e-886b-c72df361d743.png) [ci no changelog needed]
39 lines
1.5 KiB
TOML
39 lines
1.5 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" }
|
|
enso-config = { path = "../config" }
|
|
enso-frp = { path = "../../../lib/rust/frp" }
|
|
enso-logger = { path = "../../../lib/rust/logger" }
|
|
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-text = { path = "../../../lib/rust/ensogl/component/text" }
|
|
ensogl-text-msdf-sys = { path = "../../../lib/rust/ensogl/component/text/msdf-sys" }
|
|
ensogl-hardcoded-theme = { path = "../../../lib/rust/ensogl/app/theme/hardcoded" }
|
|
ide-view-graph-editor = { path = "graph-editor" }
|
|
parser = { path = "../language/parser" }
|
|
span-tree = { path = "../language/span-tree" }
|
|
js-sys = { version = "0.3.28" }
|
|
multi-map = { version = "1.3.0" }
|
|
nalgebra = { version = "0.26.1", features = ["serde-serialize"] }
|
|
ordered-float = { version = "3.0.0" }
|
|
serde_json = { version = "1.0" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
uuid = { version = "0.8", features = ["serde", "v4", "wasm-bindgen"] }
|
|
wasm-bindgen = { version = "0.2.78", features = ["nightly", "serde-serialize"] }
|
|
welcome-screen = { path = "welcome-screen" }
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3.4"
|
|
features = []
|