mirror of
https://github.com/enso-org/enso.git
synced 2024-12-21 15:32:10 +03:00
e171fba301
Implement new Enso documentation parser; remove old Scala Enso parser. Performance: Total time parsing documentation is now ~2ms. # Important Notes - Doc parsing is now done only in the frontend. - Some engine tests had never been switched to the new parser. We should investigate tests that don't pass after the switch: #5894. - The option to run the old searcher has been removed, as it is obsolete and was already broken before this (see #5909). - Some interfaces used only by the old searcher have been removed.
21 lines
833 B
TOML
21 lines
833 B
TOML
[package]
|
|
name = "ide-view-component-browser"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
enso-frp = { path = "../../../../lib/rust/frp" }
|
|
ensogl = { path = "../../../../lib/rust/ensogl" }
|
|
ensogl-gui-component = { path = "../../../../lib/rust/ensogl/component/gui" }
|
|
ensogl-hardcoded-theme = { path = "../../../../lib/rust/ensogl/app/theme/hardcoded" }
|
|
enso-prelude = { path = "../../../../lib/rust/prelude" }
|
|
ide-view-component-list-panel-breadcrumbs = { path = "component-list-panel/breadcrumbs" }
|
|
ide-view-component-list-panel = { path = "component-list-panel" }
|
|
ide-view-documentation = { path = "../documentation" }
|
|
ide-view-graph-editor = { path = "../graph-editor" }
|
|
ensogl-text = { path = "../../../../lib/rust/ensogl/component/text" }
|