2022-12-23 17:20:24 +03:00
|
|
|
[package]
|
|
|
|
name = "ide-view-documentation"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2023-03-15 18:43:51 +03:00
|
|
|
enso-doc-parser = { path = "../../../../lib/rust/parser/doc-parser" }
|
2022-12-23 17:20:24 +03:00
|
|
|
enso-frp = { path = "../../../../lib/rust/frp" }
|
|
|
|
enso-prelude = { path = "../../../../lib/rust/prelude" }
|
2023-03-15 18:43:51 +03:00
|
|
|
enso-profiler = { path = "../../../../lib/rust/profiler" }
|
2022-12-23 17:20:24 +03:00
|
|
|
ensogl = { path = "../../../../lib/rust/ensogl" }
|
|
|
|
ensogl-component = { path = "../../../../lib/rust/ensogl/component" }
|
|
|
|
ensogl-hardcoded-theme = { path = "../../../../lib/rust/ensogl/app/theme/hardcoded" }
|
2023-01-27 04:34:35 +03:00
|
|
|
ensogl-derive-theme = { path = "../../../../lib/rust/ensogl/app/theme/derive" }
|
2022-12-23 17:20:24 +03:00
|
|
|
ide-view-graph-editor = { path = "../graph-editor" }
|
|
|
|
wasm-bindgen = { workspace = true }
|
2023-01-28 01:39:37 +03:00
|
|
|
serde_json = { workspace = true }
|
2023-01-18 16:18:26 +03:00
|
|
|
horrorshow = "0.8.4"
|
|
|
|
enso-suggestion-database = { path = "../../suggestion-database" }
|
2023-01-25 04:10:10 +03:00
|
|
|
double-representation = { path = "../../controller/double-representation" }
|
2022-12-23 17:20:24 +03:00
|
|
|
|
|
|
|
[dependencies.web-sys]
|
|
|
|
version = "0.3.4"
|
|
|
|
features = []
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
ide-ci = { path = "../../../../build/ci_utils" }
|
|
|
|
tokio = { workspace = true }
|