mirror of
https://github.com/enso-org/enso.git
synced 2024-12-23 08:21:49 +03:00
a509035017
Removes a bulk of rust crates that we no longer need, but that added significant install, build and testing time to the Rust parser. Most significantly, removed `enso-web` and `enso-shapely`, and got rid of many no longer necessary `#![feature]`s. Moved two still used proc-macros from shapely to prelude. The last remaining usage of `web-sys` is within the logger (`console.log`), but we may actually want to keep that one.
26 lines
675 B
TOML
26 lines
675 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" }
|
|
lexpr = "0.2.6"
|
|
pretty_assertions = "1.4"
|
|
|
|
[lints]
|
|
workspace = true
|