mirror of
https://github.com/enso-org/enso.git
synced 2024-12-21 01:21:46 +03:00
2254dfe9fa
* Reduce parser dependencies - `enso-parser-syntax-tree-visitor` is now only used when building tests and debug tools. - Remove `enso-logging` crate and its macros. - The main bin for `enso-parser` has been moved to a `check_syntax` tool in `enso-parser-debug`.
23 lines
648 B
TOML
23 lines
648 B
TOML
[package]
|
|
name = "enso-parser-debug"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <enso-dev@enso.org>"]
|
|
edition = "2021"
|
|
description = "Enso parser debugging tools."
|
|
readme = "README.md"
|
|
homepage = "https://github.com/enso-org/enso"
|
|
repository = "https://github.com/enso-org/enso"
|
|
license-file = "../../LICENSE"
|
|
|
|
[dependencies]
|
|
enso-parser = { path = "../", features = ["debug"] }
|
|
enso-metamodel = { path = "../../metamodel", features = ["rust"] }
|
|
enso-metamodel-lexpr = { path = "../../metamodel/lexpr" }
|
|
enso-reflect = { path = "../../reflect" }
|
|
lexpr = "0.2.6"
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|