2020-10-21 11:59:58 +03:00
|
|
|
[package]
|
2020-11-30 14:38:35 +03:00
|
|
|
name = "enso-span-tree-example"
|
2020-10-21 11:59:58 +03:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Enso Team <contact@enso.org>"]
|
2021-12-01 18:06:57 +03:00
|
|
|
edition = "2021"
|
2020-10-21 11:59:58 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2020-11-30 14:38:35 +03:00
|
|
|
ast = { path = "../../ast/impl" }
|
2021-11-25 13:45:42 +03:00
|
|
|
enso-text = { path = "../../../../../lib/rust/text" }
|
2020-11-30 14:38:35 +03:00
|
|
|
span-tree = { path = "../../span-tree" }
|
2021-11-16 12:04:56 +03:00
|
|
|
enso-web = { path = "../../../../../lib/rust/web" }
|
2022-05-23 05:16:04 +03:00
|
|
|
enso-prelude = { path = "../../../../../lib/rust/prelude" }
|
|
|
|
enso-logger = { path = "../../../../../lib/rust/logger" }
|
|
|
|
wasm-bindgen = { version = "0.2.78", features = ["nightly", "serde-serialize"] }
|
2020-11-30 14:38:35 +03:00
|
|
|
uuid = { version = "0.8", features = ["serde", "v4", "wasm-bindgen"] }
|
2020-10-21 11:59:58 +03:00
|
|
|
|
|
|
|
[dependencies.web-sys]
|
2020-11-30 14:38:35 +03:00
|
|
|
version = "0.3.4"
|
2020-10-21 11:59:58 +03:00
|
|
|
features = []
|