mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-11 16:51:53 +03:00
31 lines
1.1 KiB
TOML
31 lines
1.1 KiB
TOML
[package]
|
|
name = "roc_ast"
|
|
version = "0.1.0"
|
|
authors = ["The Roc Contributors"]
|
|
license = "UPL-1.0"
|
|
edition = "2018"
|
|
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."
|
|
|
|
[dependencies]
|
|
roc_builtins = { path = "../compiler/builtins"}
|
|
roc_can = { path = "../compiler/can" }
|
|
roc_collections = { path = "../compiler/collections" }
|
|
roc_region = { path = "../compiler/region" }
|
|
roc_module = { path = "../compiler/module" }
|
|
roc_parse = { path = "../compiler/parse" }
|
|
roc_problem = { path = "../compiler/problem" }
|
|
roc_types = { path = "../compiler/types" }
|
|
roc_unify = { path = "../compiler/unify"}
|
|
roc_load = { path = "../compiler/load" }
|
|
roc_target = { path = "../compiler/roc_target" }
|
|
roc_error_macros = { path = "../error_macros" }
|
|
arrayvec = "0.7.2"
|
|
bumpalo = { version = "3.8.0", features = ["collections"] }
|
|
libc = "0.2.106"
|
|
page_size = "0.4.2"
|
|
snafu = { version = "0.6.10", features = ["backtraces"] }
|
|
ven_graph = { path = "../vendor/pathfinding" }
|
|
|
|
[dev-dependencies]
|
|
indoc = "1.0.3"
|