mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-10 10:02:38 +03:00
40 lines
1.2 KiB
TOML
40 lines
1.2 KiB
TOML
[package]
|
|
name = "roc_ast"
|
|
description = "AST as used by the editor and (soon) docs. In contrast to the compiler, these types do not keep track of a location in a file."
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
version.workspace = true
|
|
|
|
[dependencies]
|
|
roc_builtins = { path = "../compiler/builtins" }
|
|
roc_can = { path = "../compiler/can" }
|
|
roc_collections = { path = "../compiler/collections" }
|
|
roc_error_macros = { path = "../error_macros" }
|
|
roc_load = { path = "../compiler/load" }
|
|
roc_module = { path = "../compiler/module" }
|
|
roc_packaging = { path = "../packaging" }
|
|
roc_parse = { path = "../compiler/parse" }
|
|
roc_problem = { path = "../compiler/problem" }
|
|
roc_region = { path = "../compiler/region" }
|
|
roc_reporting = { path = "../reporting" }
|
|
roc_solve = { path = "../compiler/solve" }
|
|
roc_target = { path = "../compiler/roc_target" }
|
|
roc_types = { path = "../compiler/types" }
|
|
roc_unify = { path = "../compiler/unify" }
|
|
|
|
ven_graph = { path = "../vendor/pathfinding" }
|
|
|
|
arrayvec.workspace = true
|
|
bumpalo.workspace = true
|
|
libc.workspace = true
|
|
page_size.workspace = true
|
|
snafu.workspace = true
|
|
|
|
[dev-dependencies]
|
|
indoc.workspace = true
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi.workspace = true
|