mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 03:42:17 +00:00
29 lines
582 B
TOML
29 lines
582 B
TOML
[package]
|
|
name = "roc_unify"
|
|
description = "Implements Roc's unification algorithm, the heartstone of Roc's type inference."
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
version.workspace = true
|
|
|
|
[dependencies]
|
|
bitflags.workspace = true
|
|
|
|
[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_tracing]
|
|
path = "../../tracing"
|