mirror of
https://github.com/enso-org/enso.git
synced 2024-12-24 08:52:51 +03:00
27 lines
869 B
TOML
27 lines
869 B
TOML
[package]
|
|
name = "double-representation"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
ast = { path = "../../language/ast/impl" }
|
|
engine-protocol = { path = "../engine-protocol" }
|
|
parser-scala = { path = "../../language/parser" }
|
|
enso-data-structures = { path = "../../../../lib/rust/data-structures" }
|
|
enso-prelude = { path = "../../../../lib/rust/prelude" }
|
|
enso-profiler = { path = "../../../../lib/rust/profiler" }
|
|
enso-text = { path = "../../../../lib/rust/text" }
|
|
const_format = { workspace = true }
|
|
failure = { workspace = true }
|
|
itertools = { workspace = true }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
uuid = { version = "0.8", features = ["serde", "v4", "wasm-bindgen"] }
|
|
|
|
[dev-dependencies]
|
|
regex = { workspace = true }
|
|
wasm-bindgen-test = { workspace = true }
|