mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-11 05:34:11 +03:00
25 lines
778 B
TOML
25 lines
778 B
TOML
[package]
|
|
name = "roc_docs"
|
|
version = "0.1.0"
|
|
license = "UPL-1.0"
|
|
authors = ["The Roc Contributors"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
pulldown-cmark = { version = "0.8", default-features = false }
|
|
roc_load = { path = "../compiler/load" }
|
|
roc_builtins = { path = "../compiler/builtins" }
|
|
roc_can = { path = "../compiler/can" }
|
|
roc_module = { path = "../compiler/module" }
|
|
roc_region = { path = "../compiler/region" }
|
|
roc_types = { path = "../compiler/types" }
|
|
roc_parse = { path = "../compiler/parse" }
|
|
roc_collections = { path = "../compiler/collections" }
|
|
bumpalo = { version = "3.2", features = ["collections"] }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "0.5.1"
|
|
maplit = "1.0.1"
|