mirror of
https://github.com/enso-org/enso.git
synced 2024-12-18 17:41:35 +03:00
41 lines
1.5 KiB
TOML
41 lines
1.5 KiB
TOML
[package]
|
|
name = "ide-view-graph-editor"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
analytics = { path = "../../analytics" }
|
|
ast = { path = "../../language/ast/impl" }
|
|
base64 = "0.13"
|
|
bimap = { version = "0.4.0" }
|
|
enso-config = { path = "../../config" }
|
|
enso-frp = { path = "../../../../lib/rust/frp" }
|
|
enso-prelude = { path = "../../../../lib/rust/prelude" }
|
|
engine-protocol = { path = "../../controller/engine-protocol" }
|
|
enso-shapely = { path = "../../../../lib/rust/shapely" }
|
|
enso-text = { path = "../../../../lib/rust/text" }
|
|
ensogl = { path = "../../../../lib/rust/ensogl" }
|
|
ensogl-component = { path = "../../../../lib/rust/ensogl/component" }
|
|
ensogl-text-msdf = { path = "../../../../lib/rust/ensogl/component/text/src/font/msdf" }
|
|
ensogl-hardcoded-theme = { path = "../../../../lib/rust/ensogl/app/theme/hardcoded" }
|
|
ensogl-drop-manager = { path = "../../../../lib/rust/ensogl/component/drop-manager" }
|
|
failure = { workspace = true }
|
|
ordered-float = { workspace = true }
|
|
span-tree = { path = "../../language/span-tree" }
|
|
js-sys = { workspace = true }
|
|
nalgebra = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
sourcemap = "6.0"
|
|
uuid = { version = "0.8", features = ["serde", "v4", "wasm-bindgen"] }
|
|
wasm-bindgen = { workspace = true }
|
|
serde-wasm-bindgen = { workspace = true }
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3.4"
|
|
features = ["TextMetrics", 'CanvasRenderingContext2d', 'HtmlHeadElement']
|