mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 12:18:19 +00:00
19 lines
579 B
TOML
19 lines
579 B
TOML
[package]
|
|
name = "roc_late_solve"
|
|
version = "0.0.1"
|
|
authors = ["The Roc Contributors"]
|
|
license = "UPL-1.0"
|
|
edition = "2021"
|
|
description = "Provides type unification and solving primitives from the perspective of the compiler backend."
|
|
|
|
[dependencies]
|
|
roc_types = { path = "../types" }
|
|
roc_can = { path = "../can" }
|
|
roc_derive = { path = "../derive" }
|
|
roc_module = { path = "../module" }
|
|
roc_unify = { path = "../unify" }
|
|
roc_solve = { path = "../solve" }
|
|
roc_collections = { path = "../collections" }
|
|
roc_error_macros = { path = "../../error_macros" }
|
|
|
|
bumpalo.workspace = true
|