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" }
|
2023-02-10 21:05:40 +03:00
|
|
|
parser = { path = "../language/parser" }
|
2021-11-16 12:04:56 +03:00
|
|
|
enso-config = { path = "../config" }
|
|
|
|
enso-frp = { path = "../../../lib/rust/frp" }
|
2022-05-23 05:16:04 +03:00
|
|
|
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" }
|
2023-04-25 23:28:15 +03:00
|
|
|
ide-view-execution-environment-selector = { path = "execution-environment-selector" }
|
2022-12-23 17:20:24 +03:00
|
|
|
ide-view-documentation = { path = "documentation" }
|
2021-11-16 12:04:56 +03:00
|
|
|
ide-view-graph-editor = { path = "graph-editor" }
|
2023-07-18 13:35:07 +03:00
|
|
|
ide-view-project-view-top-bar = { path = "project-view-top-bar" }
|
2021-11-16 12:04:56 +03:00
|
|
|
span-tree = { path = "../language/span-tree" }
|
2023-07-24 22:58:53 +03:00
|
|
|
gloo-utils = { workspace = true }
|
2023-01-28 01:39:37 +03:00
|
|
|
js-sys = { workspace = true }
|
|
|
|
multi-map = { workspace = true }
|
|
|
|
nalgebra = { workspace = true }
|
|
|
|
ordered-float = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
2023-11-23 23:19:31 +03:00
|
|
|
serde = { workspace = true }
|
2023-07-24 22:58:53 +03:00
|
|
|
strum = { workspace = true }
|
2021-11-16 12:04:56 +03:00
|
|
|
uuid = { version = "0.8", features = ["serde", "v4", "wasm-bindgen"] }
|
2022-12-14 00:20:25 +03:00
|
|
|
wasm-bindgen = { workspace = true }
|
2023-07-24 22:58:53 +03:00
|
|
|
wasm-bindgen-test = { workspace = true }
|
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 = []
|