roc/docs/Cargo.toml

30 lines
981 B
TOML
Raw Normal View History

2020-09-14 05:35:28 +03:00
[package]
name = "roc_docs"
2020-09-14 05:35:28 +03:00
version = "0.1.0"
license = "UPL-1.0"
2021-04-10 15:07:38 +03:00
authors = ["The Roc Contributors"]
2020-09-14 05:35:28 +03:00
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
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" }
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" }
2020-09-28 01:40:54 +03:00
roc_collections = { path = "../compiler/collections" }
bumpalo = { version = "3.8.0", features = ["collections"] }
snafu = { version = "0.6.10", features = ["backtraces"] }
2020-10-26 02:08:43 +03:00
[dev-dependencies]
pretty_assertions = "1.0.0"
2021-10-04 20:26:31 +03:00
tempfile = "3.2.0"
uuid = { version = "0.8.2", features = ["v4"] }
2021-12-01 18:57:28 +03:00
indoc = "1.0.3"