enso/lib/rust/parser/schema/Cargo.toml
Paweł Grabarz f14b79f8cf
Rust bump, reduce dependencices (#10803)
Updated rust version, removed some unnecessary or problematic dependencies. Ported some changes from bazel branch.
2024-08-13 23:16:55 +00:00

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