mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 03:42:17 +00:00
29 lines
859 B
TOML
29 lines
859 B
TOML
[package]
|
|
name = "roc_can"
|
|
description = "Canonicalize a roc abstract syntax tree, resolving symbols, re-ordering definitions, and preparing a module for type inference."
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
version.workspace = true
|
|
|
|
[dependencies]
|
|
roc_collections = { path = "../collections" }
|
|
roc_error_macros = { path = "../../error_macros" }
|
|
roc_exhaustive = { path = "../exhaustive" }
|
|
roc_module = { path = "../module" }
|
|
roc_parse = { path = "../parse" }
|
|
roc_problem = { path = "../problem" }
|
|
roc_region = { path = "../region" }
|
|
roc_serialize = { path = "../serialize" }
|
|
roc_types = { path = "../types" }
|
|
|
|
ven_pretty = { path = "../../vendor/pretty" }
|
|
|
|
bitvec.workspace = true
|
|
bumpalo.workspace = true
|
|
static_assertions.workspace = true
|
|
|
|
[dev-dependencies]
|
|
indoc.workspace = true
|
|
pretty_assertions.workspace = true
|