mirror of
https://github.com/enso-org/enso.git
synced 2024-12-18 20:51:35 +03:00
31 lines
1009 B
TOML
31 lines
1009 B
TOML
[package]
|
|
name = "ide-view-documentation"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
enso-frp = { path = "../../../../lib/rust/frp" }
|
|
enso-prelude = { path = "../../../../lib/rust/prelude" }
|
|
ensogl = { path = "../../../../lib/rust/ensogl" }
|
|
ensogl-component = { path = "../../../../lib/rust/ensogl/component" }
|
|
ensogl-hardcoded-theme = { path = "../../../../lib/rust/ensogl/app/theme/hardcoded" }
|
|
ensogl-derive-theme = { path = "../../../../lib/rust/ensogl/app/theme/derive" }
|
|
ide-view-graph-editor = { path = "../graph-editor" }
|
|
wasm-bindgen = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
horrorshow = "0.8.4"
|
|
enso-suggestion-database = { path = "../../suggestion-database" }
|
|
double-representation = { path = "../../controller/double-representation" }
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3.4"
|
|
features = []
|
|
|
|
[build-dependencies]
|
|
ide-ci = { path = "../../../../build/ci_utils" }
|
|
tokio = { workspace = true }
|