2020-09-14 05:35:28 +03:00
|
|
|
[package]
|
2021-03-22 05:37:39 +03:00
|
|
|
name = "roc_docs"
|
2020-09-14 05:35:28 +03:00
|
|
|
version = "0.1.0"
|
2021-04-15 06:26:14 +03:00
|
|
|
license = "UPL-1.0"
|
2021-04-10 15:07:38 +03:00
|
|
|
authors = ["The Roc Contributors"]
|
2022-05-16 18:04:17 +03:00
|
|
|
edition = "2021"
|
2020-09-14 05:35:28 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2021-11-06 23:24:45 +03:00
|
|
|
pulldown-cmark = { version = "0.8.0", default-features = false }
|
2021-09-29 21:05:03 +03:00
|
|
|
roc_ast = { path = "../ast" }
|
2020-09-28 01:40:54 +03:00
|
|
|
roc_load = { path = "../compiler/load" }
|
|
|
|
roc_builtins = { path = "../compiler/builtins" }
|
2021-01-19 06:38:51 +03:00
|
|
|
roc_can = { path = "../compiler/can" }
|
2021-09-29 21:05:03 +03:00
|
|
|
roc_code_markup = { path = "../code_markup"}
|
2021-05-22 21:06:56 +03:00
|
|
|
roc_module = { path = "../compiler/module" }
|
|
|
|
roc_region = { path = "../compiler/region" }
|
2021-07-03 21:51:40 +03:00
|
|
|
roc_types = { path = "../compiler/types" }
|
2021-08-01 08:39:11 +03:00
|
|
|
roc_parse = { path = "../compiler/parse" }
|
2022-01-27 01:33:02 +03:00
|
|
|
roc_target = { path = "../compiler/roc_target" }
|
2020-09-28 01:40:54 +03:00
|
|
|
roc_collections = { path = "../compiler/collections" }
|
2022-03-04 22:19:05 +03:00
|
|
|
roc_highlight = { path = "../highlight"}
|
2022-04-12 22:45:42 +03:00
|
|
|
roc_reporting = { path = "../reporting"}
|
2021-11-06 23:24:45 +03:00
|
|
|
bumpalo = { version = "3.8.0", features = ["collections"] }
|
|
|
|
snafu = { version = "0.6.10", features = ["backtraces"] }
|
2022-03-04 22:19:05 +03:00
|
|
|
peg = "0.8.0"
|
2020-10-26 02:08:43 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-11-06 23:24:45 +03:00
|
|
|
pretty_assertions = "1.0.0"
|