mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-11 16:51:53 +03:00
32 lines
613 B
TOML
32 lines
613 B
TOML
[package]
|
|
authors = ["The Roc Contributors"]
|
|
edition = "2021"
|
|
license = "UPL-1.0"
|
|
name = "roc_unify"
|
|
version = "0.0.1"
|
|
description = "Implements Roc's unification algorithm, the heartstone of Roc's type inference."
|
|
|
|
[dependencies]
|
|
bitflags = "1.3.2"
|
|
|
|
[dependencies.roc_collections]
|
|
path = "../collections"
|
|
|
|
[dependencies.roc_error_macros]
|
|
path = "../../error_macros"
|
|
|
|
[dependencies.roc_module]
|
|
path = "../module"
|
|
|
|
[dependencies.roc_types]
|
|
path = "../types"
|
|
|
|
[dependencies.roc_debug_flags]
|
|
path = "../debug_flags"
|
|
|
|
[dependencies.roc_can]
|
|
path = "../can"
|
|
|
|
[dependencies.roc_solve_problem]
|
|
path = "../solve_problem"
|