roc/crates/docs/Cargo.toml

33 lines
1004 B
TOML
Raw Normal View History

2020-09-14 05:35:28 +03:00
[package]
name = "roc_docs"
description = "Generates html documentation from Roc files and is used for Rocs builtins."
2023-03-07 03:36:18 +03:00
authors.workspace = true
edition.workspace = true
license.workspace = true
version.workspace = true
2020-09-14 05:35:28 +03:00
[dependencies]
2021-09-29 21:05:03 +03:00
roc_ast = { path = "../ast" }
2020-09-28 01:40:54 +03:00
roc_builtins = { path = "../compiler/builtins" }
roc_can = { path = "../compiler/can" }
roc_code_markup = { path = "../code_markup" }
roc_collections = { path = "../compiler/collections" }
roc_highlight = { path = "../highlight" }
roc_load = { path = "../compiler/load" }
roc_module = { path = "../compiler/module" }
roc_packaging = { path = "../packaging" }
2021-08-01 08:39:11 +03:00
roc_parse = { path = "../compiler/parse" }
roc_region = { path = "../compiler/region" }
roc_reporting = { path = "../reporting" }
2022-01-27 01:33:02 +03:00
roc_target = { path = "../compiler/roc_target" }
roc_types = { path = "../compiler/types" }
2022-11-13 17:16:52 +03:00
bumpalo.workspace = true
peg.workspace = true
pulldown-cmark.workspace = true
snafu.workspace = true
2020-10-26 02:08:43 +03:00
[dev-dependencies]
2022-11-21 01:03:17 +03:00
pretty_assertions.workspace = true