mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 11:52:19 +00:00
26 lines
867 B
TOML
26 lines
867 B
TOML
[package]
|
|
name = "roc_derive"
|
|
version = "0.0.1"
|
|
authors = ["The Roc Contributors"]
|
|
license = "UPL-1.0"
|
|
edition = "2021"
|
|
description = "Provides auto-derivers for builtin abilities like `Hash` and `Decode`."
|
|
|
|
[dependencies]
|
|
roc_collections = { path = "../collections" }
|
|
roc_error_macros = { path = "../../error_macros" }
|
|
roc_derive_key = { path = "../derive_key" }
|
|
roc_region = { path = "../region" }
|
|
roc_module = { path = "../module" }
|
|
roc_types = { path = "../types" }
|
|
roc_can = { path = "../can" }
|
|
roc_unify = { path = "../unify" }
|
|
bumpalo.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
debug-derived-symbols = ["roc_module/debug-symbols"]
|
|
# Enables open extension variables for constructed records and tag unions.
|
|
# This is not necessary for code generation, but may be necessary if you are
|
|
# constraining and solving generated derived bodies.
|
|
open-extension-vars = []
|