mirror of
https://github.com/enso-org/enso.git
synced 2024-12-22 07:51:34 +03:00
e2b583c64a
return the module name if it's the atom constructor of the module.
28 lines
763 B
TOML
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"
|