2023-01-12 17:50:33 +03:00
|
|
|
[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 }
|
2023-01-12 17:50:33 +03:00
|
|
|
span-tree = { path = "../language/span-tree" }
|
|
|
|
ast = { path = "../language/ast/impl" }
|
2023-02-10 21:05:40 +03:00
|
|
|
parser = { path = "../language/parser" }
|
|
|
|
parser-scala = { path = "../language/parser-scala" }
|
2023-01-12 17:50:33 +03:00
|
|
|
enso-text = { path = "../../../lib/rust/text" }
|
2023-01-28 01:39:37 +03:00
|
|
|
double-representation = { path = "../controller/double-representation" }
|
2023-01-12 17:50:33 +03:00
|
|
|
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 }
|
2023-01-12 17:50:33 +03:00
|
|
|
enso-notification = { path = "../../../lib/rust/notification" }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-01-28 01:39:37 +03:00
|
|
|
futures = { workspace = true }
|
2023-01-12 17:50:33 +03:00
|
|
|
enso-executor = { path = "../../../lib/rust/executor" }
|
|
|
|
wasm-bindgen-test = { workspace = true }
|