mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-24 06:55:15 +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.
37 lines
956 B
TOML
37 lines
956 B
TOML
[package]
|
|
name = "roc_gen_dev"
|
|
description = "The development backend for the Roc compiler"
|
|
version = "0.0.1"
|
|
authors = ["The Roc Contributors"]
|
|
license = "UPL-1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
roc_collections = { path = "../collections" }
|
|
roc_region = { path = "../region" }
|
|
roc_module = { path = "../module" }
|
|
roc_problem = { path = "../problem" }
|
|
roc_types = { path = "../types" }
|
|
roc_builtins = { path = "../builtins" }
|
|
roc_unify = { path = "../unify" }
|
|
roc_solve = { path = "../solve" }
|
|
roc_mono = { path = "../mono" }
|
|
roc_target = { path = "../roc_target" }
|
|
roc_error_macros = { path = "../../error_macros" }
|
|
|
|
bumpalo.workspace = true
|
|
target-lexicon.workspace = true
|
|
object.workspace = true
|
|
packed_struct.workspace = true
|
|
|
|
[dev-dependencies]
|
|
roc_can = { path = "../can" }
|
|
roc_parse = { path = "../parse" }
|
|
roc_std = { path = "../../roc_std" }
|
|
|
|
bumpalo.workspace = true
|
|
capstone.workspace = true
|
|
|
|
[features]
|
|
target-aarch64 = []
|
|
target-x86_64 = []
|