mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-13 09:49:11 +03:00
18 lines
547 B
TOML
18 lines
547 B
TOML
[package]
|
|
name = "roc_code_markup"
|
|
version = "0.1.0"
|
|
authors = ["The Roc Contributors"]
|
|
license = "UPL-1.0"
|
|
edition = "2018"
|
|
description = "Our own markup language for Roc code. Used by the editor and (soon) the docs."
|
|
|
|
[dependencies]
|
|
roc_ast = { path = "../ast" }
|
|
roc_module = { path = "../compiler/module" }
|
|
roc_utils = { path = "../utils" }
|
|
serde = { version = "1.0.123", features = ["derive"] }
|
|
palette = "0.5"
|
|
snafu = { version = "0.6", features = ["backtraces"] }
|
|
bumpalo = { version = "3.2", features = ["collections"] }
|
|
|
|
[dev-dependencies] |