mirror of
https://github.com/enso-org/enso.git
synced 2024-12-19 15:12:26 +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`.
37 lines
1.0 KiB
TOML
37 lines
1.0 KiB
TOML
[package]
|
|
name = "enso-parser"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <enso-dev@enso.org>"]
|
|
edition = "2021"
|
|
description = "Enso Parser."
|
|
readme = "README.md"
|
|
homepage = "https://github.com/enso-org/enso"
|
|
repository = "https://github.com/enso-org/enso"
|
|
license-file = "../../LICENSE"
|
|
|
|
[features]
|
|
debug = ["dep:enso-parser-syntax-tree-visitor"]
|
|
|
|
[dependencies]
|
|
enso-prelude = { path = "../prelude" }
|
|
enso-reflect = { path = "../reflect" }
|
|
enso-data-structures = { path = "../data-structures" }
|
|
enso-parser-syntax-tree-visitor = { path = "src/syntax/tree/visitor", optional = true }
|
|
paste = { version = "1.0" }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
uuid = { version = "1.1", features = ["serde"] }
|
|
bincode = "1.3"
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
|
|
enso-metamodel = { path = "../metamodel", features = ["rust"] }
|
|
rand = "0.8.5"
|
|
rand_chacha = "0.3.1"
|
|
rand_distr = "0.4.3"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
|
|
wasm-bindgen-test = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|