2020-07-06 13:09:54 +03:00
|
|
|
[package]
|
2020-11-30 14:38:35 +03:00
|
|
|
name = "ide-view-graph-editor"
|
2020-07-06 13:09:54 +03:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Enso Team <contact@enso.org>"]
|
2021-12-01 18:06:57 +03:00
|
|
|
edition = "2021"
|
2020-07-06 13:09:54 +03:00
|
|
|
|
2020-08-08 09:06:15 +03:00
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
2020-07-06 13:09:54 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2021-11-16 12:04:56 +03:00
|
|
|
analytics = { version = "0.1.0", path = "../../analytics" }
|
|
|
|
ast = { version = "0.1.0", path = "../../language/ast/impl" }
|
2022-01-11 15:31:43 +03:00
|
|
|
base64 = "0.13"
|
2021-11-09 15:13:15 +03:00
|
|
|
bimap = { version = "0.4.0" }
|
2021-11-16 12:04:56 +03:00
|
|
|
enso-config = { version = "0.1.0", path = "../../config" }
|
|
|
|
enso-frp = { version = "0.1.0", path = "../../../../lib/rust/frp" }
|
2022-05-23 05:16:04 +03:00
|
|
|
enso-logger = { path = "../../../../lib/rust/logger" }
|
2022-11-28 14:42:31 +03:00
|
|
|
enso-prelude = { path = "../../../../lib/rust/prelude" }
|
2021-11-09 15:13:15 +03:00
|
|
|
engine-protocol = { version = "0.1.0", path = "../../controller/engine-protocol" }
|
2022-05-23 05:16:04 +03:00
|
|
|
enso-shapely = { path = "../../../../lib/rust/shapely" }
|
2021-11-25 13:45:42 +03:00
|
|
|
enso-text = { version = "0.1.0", path = "../../../../lib/rust/text" }
|
2021-11-16 12:04:56 +03:00
|
|
|
ensogl = { version = "0.1.0", path = "../../../../lib/rust/ensogl" }
|
2021-11-30 14:27:50 +03:00
|
|
|
ensogl-component = { path = "../../../../lib/rust/ensogl/component" }
|
2022-08-27 01:25:34 +03:00
|
|
|
ensogl-text-msdf = { version = "0.1.0", path = "../../../../lib/rust/ensogl/component/text/src/font/msdf" }
|
2021-11-16 12:04:56 +03:00
|
|
|
ensogl-hardcoded-theme = { version = "0.1.0", path = "../../../../lib/rust/ensogl/app/theme/hardcoded" }
|
|
|
|
ensogl-drop-manager = { version = "0.1.0", path = "../../../../lib/rust/ensogl/component/drop-manager" }
|
2021-03-10 13:09:45 +03:00
|
|
|
failure = { version = "0.1.8" }
|
2022-07-04 17:08:31 +03:00
|
|
|
ordered-float = { version = "3.0.0" }
|
2021-11-16 12:04:56 +03:00
|
|
|
span-tree = { version = "0.1.0", path = "../../language/span-tree" }
|
2020-11-30 14:38:35 +03:00
|
|
|
js-sys = { version = "0.3.28" }
|
2021-05-20 17:50:43 +03:00
|
|
|
nalgebra = { version = "0.26.1", features = ["serde-serialize"] }
|
2020-11-30 14:38:35 +03:00
|
|
|
serde_json = { version = "1.0" }
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-01-11 15:31:43 +03:00
|
|
|
sourcemap = "6.0"
|
2020-11-30 14:38:35 +03:00
|
|
|
uuid = { version = "0.8", features = ["serde", "v4", "wasm-bindgen"] }
|
2022-03-04 17:13:23 +03:00
|
|
|
wasm-bindgen = { version = "0.2.78", features = ["nightly", "serde-serialize"] }
|
2020-07-06 13:09:54 +03:00
|
|
|
|
|
|
|
[dependencies.web-sys]
|
|
|
|
version = "0.3.4"
|
2022-11-18 21:52:28 +03:00
|
|
|
features = ["TextMetrics", 'CanvasRenderingContext2d', 'HtmlHeadElement']
|