2020-01-29 23:30:09 +03:00
|
|
|
[package]
|
2020-11-30 14:38:35 +03:00
|
|
|
name = "ast"
|
2020-01-29 23:30:09 +03:00
|
|
|
version = "0.1.0"
|
2020-11-30 14:38:35 +03:00
|
|
|
authors = ["Enso Team <contact@enso.org>"]
|
2020-01-29 23:30:09 +03:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2021-11-10 16:36:08 +03:00
|
|
|
derive_more = { version = "0.99.16" }
|
2020-11-30 14:38:35 +03:00
|
|
|
failure = { version = "0.1.5" }
|
|
|
|
lazy_static = { version = "1.4.0" }
|
|
|
|
regex = { version = "1" }
|
|
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
|
|
|
serde_json = { version = "1.0" }
|
|
|
|
shrinkwraprs = { version = "0.2.1" }
|
|
|
|
uuid = { version = "0.8.1", features = ["serde", "v4", "wasm-bindgen"] }
|
|
|
|
ast-macros = { path = "../macros" }
|
2021-11-16 12:04:56 +03:00
|
|
|
enso-data = { path = "../../../../../lib/rust/data"}
|
|
|
|
enso-prelude = { path = "../../../../../lib/rust/prelude"}
|
|
|
|
enso-shapely = { path = "../../../../../lib/rust/shapely/impl"}
|