2021-11-16 12:04:56 +03:00
|
|
|
[package]
|
|
|
|
name = "ide-view"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Enso Team <contact@enso.org>"]
|
2021-12-01 18:06:57 +03:00
|
|
|
edition = "2021"
|
2021-11-16 12:04:56 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
ast = { path = "../language/ast/impl" }
|
|
|
|
enso-config = { path = "../config" }
|
|
|
|
enso-frp = { path = "../../../lib/rust/frp" }
|
2022-05-23 05:16:04 +03:00
|
|
|
enso-logger = { path = "../../../lib/rust/logger" }
|
|
|
|
enso-prelude = { path = "../../../lib/rust/prelude" }
|
|
|
|
enso-shapely = { path = "../../../lib/rust/shapely" }
|
2021-11-16 12:04:56 +03:00
|
|
|
engine-protocol = { path = "../controller/engine-protocol" }
|
|
|
|
ensogl = { path = "../../../lib/rust/ensogl" }
|
2021-11-30 14:27:50 +03:00
|
|
|
ensogl-component = { path = "../../../lib/rust/ensogl/component" }
|
2022-07-14 15:00:52 +03:00
|
|
|
ensogl-gui-component = { path = "../../../lib/rust/ensogl/component/gui" }
|
2021-11-16 12:04:56 +03:00
|
|
|
ensogl-text = { path = "../../../lib/rust/ensogl/component/text" }
|
2022-08-27 01:25:34 +03:00
|
|
|
ensogl-text-msdf = { path = "../../../lib/rust/ensogl/component/text/src/font/msdf" }
|
2021-11-16 12:04:56 +03:00
|
|
|
ensogl-hardcoded-theme = { path = "../../../lib/rust/ensogl/app/theme/hardcoded" }
|
2022-07-14 15:00:52 +03:00
|
|
|
ide-view-component-browser = { path = "component-browser" }
|
2021-11-16 12:04:56 +03:00
|
|
|
ide-view-graph-editor = { path = "graph-editor" }
|
2022-10-11 00:38:48 +03:00
|
|
|
parser-scala = { path = "../language/parser" }
|
2021-11-16 12:04:56 +03:00
|
|
|
span-tree = { path = "../language/span-tree" }
|
|
|
|
js-sys = { version = "0.3.28" }
|
2021-12-15 13:40:14 +03:00
|
|
|
multi-map = { version = "1.3.0" }
|
2021-11-16 12:04:56 +03:00
|
|
|
nalgebra = { version = "0.26.1", features = ["serde-serialize"] }
|
2022-07-04 17:08:31 +03:00
|
|
|
ordered-float = { version = "3.0.0" }
|
2021-11-16 12:04:56 +03:00
|
|
|
serde_json = { version = "1.0" }
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
uuid = { version = "0.8", features = ["serde", "v4", "wasm-bindgen"] }
|
2022-05-23 05:16:04 +03:00
|
|
|
wasm-bindgen = { version = "0.2.78", features = ["nightly", "serde-serialize"] }
|
2021-11-30 18:23:46 +03:00
|
|
|
welcome-screen = { path = "welcome-screen" }
|
2021-11-16 12:04:56 +03:00
|
|
|
|
|
|
|
[dependencies.web-sys]
|
|
|
|
version = "0.3.4"
|
|
|
|
features = []
|