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]
|
2021-11-16 12:04:56 +03:00
|
|
|
ast = { version = "0.1.0", path = "../../language/ast/impl" }
|
2021-11-09 15:13:15 +03:00
|
|
|
engine-protocol = { version = "0.1.0", path = "../engine-protocol" }
|
2021-11-16 12:04:56 +03:00
|
|
|
parser = { version = "0.1.0", path = "../../language/parser" }
|
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-logger = { path = "../../../../lib/rust/logger" }
|
|
|
|
enso-prelude = { path = "../../../../lib/rust/prelude" }
|
2021-11-25 13:45:42 +03:00
|
|
|
enso-text = { path = "../../../../lib/rust/text" }
|
2021-11-09 15:13:15 +03:00
|
|
|
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" }
|