roc/crates/docs/Cargo.toml

29 lines
945 B
TOML
Raw Normal View History

2020-09-14 05:35:28 +03:00
[package]
name = "roc_docs"
version = "0.0.1"
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]
pulldown-cmark = { version = "0.9.2", 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" }
roc_can = { path = "../compiler/can" }
2021-09-29 21:05:03 +03:00
roc_code_markup = { path = "../code_markup"}
roc_module = { path = "../compiler/module" }
roc_region = { path = "../compiler/region" }
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" }
roc_highlight = { path = "../highlight"}
2022-04-12 22:45:42 +03:00
roc_reporting = { path = "../reporting"}
bumpalo = { version = "3.11.0", features = ["collections"] }
2022-06-30 05:33:47 +03:00
snafu = { version = "0.7.1", features = ["backtraces"] }
peg = "0.8.1"
2020-10-26 02:08:43 +03:00
[dev-dependencies]
pretty_assertions = "1.3.0"