mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-11 05:34:11 +03:00
21 lines
553 B
TOML
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 = []
|