enso/lib/rust/parser/Cargo.toml
Paweł Grabarz 7653280e33
Remove all usages of unstable rust features (#10813)
Removed all `#![feature]` flags, except for `#![feature(test)]`. Once parser benchmarks are ported to something that is compatible with stable rust, we will be able to switch to it.
2024-08-22 14:09:17 +00:00

39 lines
1.1 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"]
nightly = [] # necessary to run benchmarks
[dependencies]
enso-prelude = { path = "../prelude" }
enso-reflect = { path = "../reflect" }
derive-where = { workspace = true }
derive_more = { workspace = true }
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" }
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