roc/crates/compiler/unify/Cargo.toml

33 lines
634 B
TOML
Raw Normal View History

[package]
name = "roc_unify"
description = "Implements Roc's unification algorithm, the heartstone of Roc's type inference."
2023-03-07 03:36:18 +03:00
authors.workspace = true
edition.workspace = true
license.workspace = true
version.workspace = true
[dependencies]
bitflags.workspace = true
[dependencies.roc_collections]
path = "../collections"
2022-04-12 22:36:36 +03:00
[dependencies.roc_error_macros]
path = "../../error_macros"
[dependencies.roc_module]
path = "../module"
[dependencies.roc_types]
path = "../types"
[dependencies.roc_debug_flags]
path = "../debug_flags"
2022-07-26 00:36:46 +03:00
[dependencies.roc_tracing]
path = "../../tracing"
2023-07-16 17:09:26 +03:00
[dependencies.roc_checkmate]
path = "../checkmate"