mirror of
https://github.com/enso-org/enso.git
synced 2024-12-20 23:11:35 +03:00
26 lines
596 B
TOML
26 lines
596 B
TOML
[package]
|
|
name = "ast"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <enso-dev@enso.org>"]
|
|
edition = "2018"
|
|
|
|
description = "An abstract syntax tree for the Enso language."
|
|
readme = "README.md"
|
|
homepage = "https://github.com/enso-org/enso/lib/rust/ast"
|
|
repository = "https://github.com/enso-org/enso"
|
|
license-file = "../../../LICENSE"
|
|
|
|
keywords = ["ast"]
|
|
categories = ["parsing"]
|
|
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "ast"
|
|
crate-type = ["cdylib", "rlib"]
|
|
test = true
|
|
bench = true
|
|
|
|
[dependencies]
|
|
uuid = { version = "0.8.1", features = ["serde","v4","wasm-bindgen"] }
|