enso/app/gui/view/graph-editor/Cargo.toml

45 lines
1.6 KiB
TOML
Raw Normal View History

[package]
name = "ide-view-graph-editor"
version = "0.1.0"
authors = ["Enso Team <contact@enso.org>"]
2021-12-01 18:06:57 +03:00
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
2023-01-28 01:39:37 +03:00
analytics = { path = "../../analytics" }
ast = { path = "../../language/ast/impl" }
base64 = "0.13"
bimap = { version = "0.4.0" }
engine-protocol = { path = "../../controller/engine-protocol" }
2023-01-28 01:39:37 +03:00
enso-config = { path = "../../config" }
enso-frp = { path = "../../../../lib/rust/frp" }
enso-prelude = { path = "../../../../lib/rust/prelude" }
2022-05-23 05:16:04 +03:00
enso-shapely = { path = "../../../../lib/rust/shapely" }
2023-01-28 01:39:37 +03:00
enso-text = { path = "../../../../lib/rust/text" }
ensogl = { path = "../../../../lib/rust/ensogl" }
ensogl-component = { path = "../../../../lib/rust/ensogl/component" }
2023-01-28 01:39:37 +03:00
ensogl-drop-manager = { path = "../../../../lib/rust/ensogl/component/drop-manager" }
ensogl-hardcoded-theme = { path = "../../../../lib/rust/ensogl/app/theme/hardcoded" }
ensogl-text-msdf = { path = "../../../../lib/rust/ensogl/component/text/src/font/msdf" }
2023-01-28 01:39:37 +03:00
failure = { workspace = true }
indexmap = "1.9.2"
2023-01-28 01:39:37 +03:00
js-sys = { workspace = true }
nalgebra = { workspace = true }
ordered-float = { workspace = true }
serde = { version = "1.0", features = ["derive"] }
serde-wasm-bindgen = { workspace = true }
serde_json = { workspace = true }
sourcemap = "6.0"
span-tree = { path = "../../language/span-tree" }
uuid = { version = "0.8", features = ["serde", "v4", "wasm-bindgen"] }
wasm-bindgen = { workspace = true }
[dependencies.web-sys]
version = "0.3.4"
features = ["TextMetrics", 'CanvasRenderingContext2d', 'HtmlHeadElement']
[dev-dependencies]
wasm-bindgen-test = "0.3.8"