roc/docs/Cargo.toml
2022-05-16 17:04:17 +02:00

29 lines
945 B
TOML

[package]
name = "roc_docs"
version = "0.1.0"
license = "UPL-1.0"
authors = ["The Roc Contributors"]
edition = "2021"
[dependencies]
pulldown-cmark = { version = "0.8.0", default-features = false }
roc_ast = { path = "../ast" }
roc_load = { path = "../compiler/load" }
roc_builtins = { path = "../compiler/builtins" }
roc_can = { path = "../compiler/can" }
roc_code_markup = { path = "../code_markup"}
roc_module = { path = "../compiler/module" }
roc_region = { path = "../compiler/region" }
roc_types = { path = "../compiler/types" }
roc_parse = { path = "../compiler/parse" }
roc_target = { path = "../compiler/roc_target" }
roc_collections = { path = "../compiler/collections" }
roc_highlight = { path = "../highlight"}
roc_reporting = { path = "../reporting"}
bumpalo = { version = "3.8.0", features = ["collections"] }
snafu = { version = "0.6.10", features = ["backtraces"] }
peg = "0.8.0"
[dev-dependencies]
pretty_assertions = "1.0.0"