mirror of
https://github.com/enso-org/enso.git
synced 2024-12-30 05:42:08 +03:00
28 lines
953 B
TOML
28 lines
953 B
TOML
|
[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" }
|
||
|
convert_case = { version = "0.5.0" }
|
||
|
span-tree = { path = "../language/span-tree" }
|
||
|
ast = { path = "../language/ast/impl" }
|
||
|
parser-scala = { path = "../language/parser" }
|
||
|
enso-text = { path = "../../../lib/rust/text" }
|
||
|
double-representation = { version = "0.1.0", path = "../controller/double-representation" }
|
||
|
engine-protocol = { path = "../controller/engine-protocol" }
|
||
|
enso-data-structures = { path = "../../../lib/rust/data-structures" }
|
||
|
flo_stream = { version = "0.4.0" }
|
||
|
failure = { version = "0.1.6" }
|
||
|
enso-notification = { path = "../../../lib/rust/notification" }
|
||
|
|
||
|
[dev-dependencies]
|
||
|
futures = { version = "0.3.1" }
|
||
|
enso-executor = { path = "../../../lib/rust/executor" }
|
||
|
wasm-bindgen-test = { workspace = true }
|