mirror of
https://github.com/enso-org/enso.git
synced 2024-12-19 15:12:26 +03:00
f14b79f8cf
Updated rust version, removed some unnecessary or problematic dependencies. Ported some changes from bazel branch.
23 lines
611 B
TOML
23 lines
611 B
TOML
[package]
|
|
name = "enso-parser-schema"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <enso-dev@enso.org>"]
|
|
edition = "2021"
|
|
description = "Generates schema describing Enso Parser AST types."
|
|
readme = "README.md"
|
|
homepage = "https://github.com/enso-org/enso"
|
|
repository = "https://github.com/enso-org/enso"
|
|
license-file = "../../LICENSE"
|
|
|
|
[dependencies]
|
|
enso-metamodel = { path = "../../metamodel" }
|
|
enso-parser = { path = ".." }
|
|
enso-reflect = { path = "../../reflect" }
|
|
serde = { workspace = true }
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
serde_json = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|