2021-09-22 22:02:43 +03:00
|
|
|
[package]
|
|
|
|
name = "roc_ast"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["The Roc Contributors"]
|
|
|
|
license = "UPL-1.0"
|
|
|
|
edition = "2018"
|
2021-09-24 21:08:49 +03:00
|
|
|
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."
|
2021-09-22 22:02:43 +03:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
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" }
|
|
|
|
arraystring = "0.3.0"
|
|
|
|
bumpalo = { version = "3.6.1", features = ["collections"] }
|
|
|
|
libc = "0.2"
|
|
|
|
page_size = "0.4"
|
|
|
|
snafu = { version = "0.6", features = ["backtraces"] }
|
|
|
|
ven_graph = { path = "../vendor/pathfinding" }
|
|
|
|
|
|
|
|
[dev-dependencies]
|