2021-09-22 22:02:43 +03:00
|
|
|
[package]
|
|
|
|
name = "roc_ast"
|
2022-09-17 09:37:45 +03:00
|
|
|
version = "0.0.1"
|
2021-09-22 22:02:43 +03:00
|
|
|
authors = ["The Roc Contributors"]
|
|
|
|
license = "UPL-1.0"
|
2022-05-16 18:04:17 +03:00
|
|
|
edition = "2021"
|
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]
|
2021-10-04 20:26:31 +03:00
|
|
|
roc_builtins = { path = "../compiler/builtins"}
|
2021-09-22 22:02:43 +03:00
|
|
|
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" }
|
2021-09-25 18:14:32 +03:00
|
|
|
roc_unify = { path = "../compiler/unify"}
|
2022-07-11 02:42:41 +03:00
|
|
|
roc_solve = { path = "../compiler/solve"}
|
2021-10-04 20:26:31 +03:00
|
|
|
roc_load = { path = "../compiler/load" }
|
2022-01-27 01:33:02 +03:00
|
|
|
roc_target = { path = "../compiler/roc_target" }
|
2022-01-23 11:40:34 +03:00
|
|
|
roc_error_macros = { path = "../error_macros" }
|
2022-04-12 22:45:42 +03:00
|
|
|
roc_reporting = { path = "../reporting" }
|
2021-11-30 16:06:36 +03:00
|
|
|
arrayvec = "0.7.2"
|
2022-09-13 00:08:56 +03:00
|
|
|
bumpalo = { version = "3.11.0", features = ["collections"] }
|
2021-11-06 23:24:45 +03:00
|
|
|
page_size = "0.4.2"
|
2022-06-30 05:33:47 +03:00
|
|
|
snafu = { version = "0.7.1", features = ["backtraces"] }
|
2021-09-22 22:02:43 +03:00
|
|
|
ven_graph = { path = "../vendor/pathfinding" }
|
2022-10-10 16:00:20 +03:00
|
|
|
libc = "0.2.135"
|
2021-09-22 22:02:43 +03:00
|
|
|
|
2021-09-25 18:14:32 +03:00
|
|
|
[dev-dependencies]
|
2022-08-15 16:18:18 +03:00
|
|
|
indoc = "1.0.7"
|
2022-02-28 15:48:11 +03:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2022-02-28 20:26:55 +03:00
|
|
|
winapi = { version = "0.3.9", features = ["memoryapi"]}
|
2022-02-28 15:48:11 +03:00
|
|
|
|