mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 11:52:19 +00:00

I realized that we'll need to make the layout interner more complicated to support things like recursive pointers pointing to their parents and to support lambda set layout caching. Since the layout interner is the only user of intern crate right now anyway, just inline the whole thing.
28 lines
972 B
TOML
28 lines
972 B
TOML
[package]
|
|
edition = "2021"
|
|
name = "roc_repl_eval"
|
|
version = "0.0.1"
|
|
authors = ["The Roc Contributors"]
|
|
license = "UPL-1.0"
|
|
description = "Provides the functionality for the REPL to evaluate Roc expressions."
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bumpalo.workspace = true
|
|
|
|
roc_builtins = {path = "../compiler/builtins"}
|
|
roc_can = {path = "../compiler/can"}
|
|
roc_collections = {path = "../compiler/collections"}
|
|
roc_fmt = {path = "../compiler/fmt"}
|
|
roc_load = {path = "../compiler/load"}
|
|
roc_module = {path = "../compiler/module"}
|
|
roc_mono = {path = "../compiler/mono"}
|
|
roc_parse = {path = "../compiler/parse"}
|
|
roc_problem = {path = "../compiler/problem"}
|
|
roc_region = {path = "../compiler/region"}
|
|
roc_packaging = {path = "../packaging"}
|
|
roc_reporting = {path = "../reporting"}
|
|
roc_std = {path = "../roc_std"}
|
|
roc_target = {path = "../compiler/roc_target"}
|
|
roc_types = {path = "../compiler/types"}
|