mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-10 10:02:38 +03:00
24 lines
661 B
TOML
24 lines
661 B
TOML
[package]
|
|
name = "docs"
|
|
version = "0.1.0"
|
|
authors = ["Pablo Hirafuji <pablohirafuji@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
handlebars = "3.4.0"
|
|
serde = "1.0.0"
|
|
serde_json = "1.0.39"
|
|
serde_derive = "1.0.75"
|
|
fs_extra = "1.2.0"
|
|
pulldown-cmark = { version = "0.8", default-features = false }
|
|
roc_load = { path = "../compiler/load" }
|
|
roc_builtins = { path = "../compiler/builtins" }
|
|
roc_collections = { path = "../compiler/collections" }
|
|
bumpalo = { version = "3.2", features = ["collections"] }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "0.5.1"
|
|
maplit = "1.0.1"
|