enso/lib/rust/parser/doc-parser/Cargo.toml
Kaz Wesley 2254dfe9fa
Reduce parser dependencies (#9671)
* 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`.
2024-04-11 00:27:19 -04:00

27 lines
727 B
TOML

[package]
name = "enso-doc-parser"
version = "0.1.0"
authors = ["Enso Team <enso-dev@enso.org>"]
edition = "2021"
description = "Enso Documentation Parser."
readme = "README.md"
homepage = "https://github.com/enso-org/enso"
repository = "https://github.com/enso-org/enso"
license-file = "../../LICENSE"
[dependencies]
enso-parser = { path = ".." }
enso-prelude = { path = "../../prelude" }
enso-reflect = { path = "../../reflect" }
serde = { workspace = true }
[dev-dependencies]
enso-metamodel = { path = "../../metamodel", features = ["rust"] }
enso-metamodel-lexpr = { path = "../../metamodel/lexpr" }
enso-parser = { path = "..", features = ["debug"] }
lexpr = "0.2.6"
pretty_assertions = "1.4"
[lints]
workspace = true