mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-02 19:32:17 +00:00
20 lines
683 B
TOML
20 lines
683 B
TOML
[package]
|
|
name = "roc_constrain"
|
|
description = "Responsible for building the set of constraints that are used during type inference of a program, and for gathering context needed for pleasant error messages when a type error occurs."
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
version.workspace = true
|
|
|
|
[dependencies]
|
|
roc_can = { path = "../can" }
|
|
roc_collections = { path = "../collections" }
|
|
roc_error_macros = { path = "../../error_macros" }
|
|
roc_module = { path = "../module" }
|
|
roc_parse = { path = "../parse" }
|
|
roc_problem = { path = "../problem" }
|
|
roc_region = { path = "../region" }
|
|
roc_types = { path = "../types" }
|
|
|
|
arrayvec.workspace = true
|