mirror of
https://github.com/enso-org/enso.git
synced 2024-12-29 02:41:40 +03:00
23 lines
700 B
TOML
23 lines
700 B
TOML
[package]
|
|
name = "ast"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
derive_more = { version = "0.99.16" }
|
|
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" }
|
|
enso-data = { path = "../../../../../lib/rust/data"}
|
|
enso-prelude = { path = "../../../../../lib/rust/prelude"}
|
|
enso-shapely = { path = "../../../../../lib/rust/shapely/impl"}
|