enso/lib/rust/parser/schema/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
611 B
TOML
Raw Normal View History

[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