2021-11-09 15:13:15 +03:00
|
|
|
[package]
|
|
|
|
name = "double-representation"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Enso Team <contact@enso.org>"]
|
2021-12-01 18:06:57 +03:00
|
|
|
edition = "2021"
|
2021-11-09 15:13:15 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2023-01-28 01:39:37 +03:00
|
|
|
ast = { path = "../../language/ast/impl" }
|
2023-02-10 21:05:40 +03:00
|
|
|
parser = { path = "../../language/parser" }
|
2023-01-28 01:39:37 +03:00
|
|
|
engine-protocol = { path = "../engine-protocol" }
|
2021-11-25 13:45:42 +03:00
|
|
|
enso-data-structures = { path = "../../../../lib/rust/data-structures" }
|
2022-05-23 05:16:04 +03:00
|
|
|
enso-prelude = { path = "../../../../lib/rust/prelude" }
|
2022-06-01 21:01:16 +03:00
|
|
|
enso-profiler = { path = "../../../../lib/rust/profiler" }
|
2021-11-25 13:45:42 +03:00
|
|
|
enso-text = { path = "../../../../lib/rust/text" }
|
2023-01-28 01:39:37 +03:00
|
|
|
const_format = { workspace = true }
|
|
|
|
failure = { workspace = true }
|
|
|
|
itertools = { workspace = true }
|
2021-11-09 15:13:15 +03:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
uuid = { version = "0.8", features = ["serde", "v4", "wasm-bindgen"] }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-01-27 03:09:09 +03:00
|
|
|
regex = { workspace = true }
|
2022-12-14 00:20:25 +03:00
|
|
|
wasm-bindgen-test = { workspace = true }
|