mirror of
https://github.com/roc-lang/roc.git
synced 2025-11-20 12:05:39 +00:00
Bumps [pulldown-cmark](https://github.com/raphlinus/pulldown-cmark) from 0.9.1 to 0.9.2. - [Release notes](https://github.com/raphlinus/pulldown-cmark/releases) - [Commits](https://github.com/raphlinus/pulldown-cmark/compare/v0.9.1...v0.9.2) --- updated-dependencies: - dependency-name: pulldown-cmark dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
28 lines
944 B
TOML
28 lines
944 B
TOML
[package]
|
|
name = "roc_docs"
|
|
version = "0.0.1"
|
|
license = "UPL-1.0"
|
|
authors = ["The Roc Contributors"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
pulldown-cmark = { version = "0.9.2", 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.7.1", features = ["backtraces"] }
|
|
peg = "0.8.0"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1.0.0"
|