2023-10-11 16:04:38 +03:00
|
|
|
[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]
|
2024-08-14 02:16:55 +03:00
|
|
|
enso-metamodel = { path = "../../metamodel" }
|
2023-10-11 16:04:38 +03:00
|
|
|
enso-parser = { path = ".." }
|
2024-08-14 02:16:55 +03:00
|
|
|
enso-reflect = { path = "../../reflect" }
|
2023-11-23 23:19:31 +03:00
|
|
|
serde = { workspace = true }
|
2023-10-11 16:04:38 +03:00
|
|
|
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
|
|
serde_json = { workspace = true }
|
2024-03-25 02:45:55 +03:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|