roc/crates/compiler/module/Cargo.toml
2022-11-13 16:10:02 +01:00

21 lines
553 B
TOML

[package]
name = "roc_module"
version = "0.0.1"
authors = ["The Roc Contributors"]
edition = "2021"
license = "UPL-1.0"
description = "Implements data structures used for efficiently representing unique modules and identifiers in Roc programs."
[dependencies]
roc_region = { path = "../region" }
roc_ident = { path = "../ident" }
roc_collections = { path = "../collections" }
roc_error_macros = {path = "../../error_macros"}
bumpalo.workspace = true
static_assertions.workspace = true
snafu.workspace = true
[features]
default = []
debug-symbols = []