mirror of
https://github.com/enso-org/enso.git
synced 2024-12-19 20:01:36 +03:00
37af06b14d
[Task link](https://www.pivotaltracker.com/story/show/183992025) This PR moves the documentation visualization into a separate crate and sets up the Tailwind CSS framework for this new crate. We would use Tailwind to style our HTML documentation. https://user-images.githubusercontent.com/6566674/208719213-85f78f7e-8dc2-45d5-95a1-db4baad1bda1.mp4
28 lines
820 B
TOML
28 lines
820 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-logger = { path = "../../../../lib/rust/logger" }
|
|
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" }
|
|
ide-view-graph-editor = { path = "../graph-editor" }
|
|
wasm-bindgen = { workspace = true }
|
|
serde_json = { version = "1.0" }
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3.4"
|
|
features = []
|
|
|
|
[build-dependencies]
|
|
ide-ci = { path = "../../../../build/ci_utils" }
|
|
tokio = { workspace = true }
|