mirror of
https://github.com/enso-org/enso.git
synced 2024-12-19 02:01:49 +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]
41 lines
1.8 KiB
TOML
41 lines
1.8 KiB
TOML
[package]
|
|
name = "ide-view-graph-editor"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
analytics = { version = "0.1.0", path = "../../analytics" }
|
|
ast = { version = "0.1.0", path = "../../language/ast/impl" }
|
|
base64 = "0.13"
|
|
bimap = { version = "0.4.0" }
|
|
enso-config = { version = "0.1.0", path = "../../config" }
|
|
enso-frp = { version = "0.1.0", path = "../../../../lib/rust/frp" }
|
|
enso-logger = { path = "../../../../lib/rust/logger" }
|
|
enso-prelude = { path = "../../../../lib/rust/prelude", features = ["serde"] }
|
|
engine-protocol = { version = "0.1.0", path = "../../controller/engine-protocol" }
|
|
enso-shapely = { path = "../../../../lib/rust/shapely" }
|
|
enso-text = { version = "0.1.0", path = "../../../../lib/rust/text" }
|
|
ensogl = { version = "0.1.0", path = "../../../../lib/rust/ensogl" }
|
|
ensogl-component = { path = "../../../../lib/rust/ensogl/component" }
|
|
ensogl-text-msdf-sys = { version = "0.1.0", path = "../../../../lib/rust/ensogl/component/text/msdf-sys" }
|
|
ensogl-hardcoded-theme = { version = "0.1.0", path = "../../../../lib/rust/ensogl/app/theme/hardcoded" }
|
|
ensogl-drop-manager = { version = "0.1.0", path = "../../../../lib/rust/ensogl/component/drop-manager" }
|
|
failure = { version = "0.1.8" }
|
|
ordered-float = { version = "3.0.0" }
|
|
span-tree = { version = "0.1.0", path = "../../language/span-tree" }
|
|
js-sys = { version = "0.3.28" }
|
|
nalgebra = { version = "0.26.1", features = ["serde-serialize"] }
|
|
serde_json = { version = "1.0" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
sourcemap = "6.0"
|
|
uuid = { version = "0.8", features = ["serde", "v4", "wasm-bindgen"] }
|
|
wasm-bindgen = { version = "0.2.78", features = ["nightly", "serde-serialize"] }
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3.4"
|
|
features = []
|