roc/crates/compiler/module/Cargo.toml
2023-03-06 19:47:57 -08:00

22 lines
567 B
TOML

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