enso/lib/rust/parser/Cargo.toml
Dmitry Bushev e2b583c64a
Return Correct Name for the Module in AtomConstructor (#1375)
return the module name if it's the atom constructor of the module.
2021-01-11 14:29:50 +03:00

28 lines
763 B
TOML

[package]
name = "parser"
version = "0.1.0"
authors = ["Enso Team <enso-dev@enso.org>"]
edition = "2018"
publish = false
[lib]
crate-type = ["cdylib", "rlib"]
test = true
bench = true
[dependencies]
enso-data = { version = "0.1.3" }
enso-logger = { version = "0.1.3" }
enso-prelude = { version = "0.1.8" }
lexer = { version = "0.1.0", path = "../lexer/generation" }
itertools = { version = "0.9.0" }
# Pinned packages
# TODO: [DB] Remove after switching to new Rust toolchain version.
anyhow = { version = "<=1.0.37" }
[build-dependencies]
[dev-dependencies]
criterion = "0.3"