enso/app/gui/suggestion-database/Cargo.toml

30 lines
1.0 KiB
TOML
Raw Normal View History

[package]
name = "enso-suggestion-database"
version = "0.1.0"
authors = ["Enso Team <contact@enso.org>"]
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
enso-prelude = { path = "../../../lib/rust/prelude" }
2023-01-28 01:39:37 +03:00
convert_case = { workspace = true }
span-tree = { path = "../language/span-tree" }
ast = { path = "../language/ast/impl" }
parser = { path = "../language/parser" }
parser-scala = { path = "../language/parser-scala" }
enso-profiler = { path = "../../../lib/rust/profiler" }
enso-text = { path = "../../../lib/rust/text" }
2023-01-28 01:39:37 +03:00
double-representation = { path = "../controller/double-representation" }
engine-protocol = { path = "../controller/engine-protocol" }
enso-data-structures = { path = "../../../lib/rust/data-structures" }
flo_stream = { version = "0.4.0" }
2023-01-28 01:39:37 +03:00
failure = { workspace = true }
enso-notification = { path = "../../../lib/rust/notification" }
[dev-dependencies]
2023-01-28 01:39:37 +03:00
futures = { workspace = true }
enso-executor = { path = "../../../lib/rust/executor" }
wasm-bindgen-test = { workspace = true }