mirror of
https://github.com/enso-org/enso.git
synced 2024-12-18 20:21:51 +03:00
ad69eeb4ad
Merged the build script into main repository. Some related cleanups.
28 lines
988 B
TOML
28 lines
988 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 = { version = "0.1.0", path = "../../language/ast/impl" }
|
|
engine-protocol = { version = "0.1.0", path = "../engine-protocol" }
|
|
parser-scala = { version = "0.1.0", path = "../../language/parser" }
|
|
enso-data-structures = { path = "../../../../lib/rust/data-structures" }
|
|
enso-logger = { path = "../../../../lib/rust/logger" }
|
|
enso-prelude = { path = "../../../../lib/rust/prelude" }
|
|
enso-profiler = { path = "../../../../lib/rust/profiler" }
|
|
enso-text = { path = "../../../../lib/rust/text" }
|
|
const_format = { version = "0.2.22" }
|
|
failure = { version = "0.1.6" }
|
|
itertools = { version = "0.10.0" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
uuid = { version = "0.8", features = ["serde", "v4", "wasm-bindgen"] }
|
|
|
|
[dev-dependencies]
|
|
regex = { version = "1.3.6" }
|
|
wasm-bindgen-test = { version = "0.3.8" }
|