roc/ast/Cargo.toml

36 lines
1.2 KiB
TOML
Raw Normal View History

[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]
2021-10-04 20:26:31 +03:00
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"}
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" }
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"
bumpalo = { version = "3.8.0", features = ["collections"] }
page_size = "0.4.2"
snafu = { version = "0.6.10", features = ["backtraces"] }
ven_graph = { path = "../vendor/pathfinding" }
2022-02-28 20:11:14 +03:00
libc = "0.2.106"
[dev-dependencies]
indoc = "1.0.3"
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