mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 20:28:02 +00:00
26 lines
686 B
TOML
26 lines
686 B
TOML
[package]
|
|
name = "roc_builtins"
|
|
description = "Provides the Roc functions and modules that are implicitly imported into every module."
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
version.workspace = true
|
|
|
|
[dependencies]
|
|
roc_collections = { path = "../collections" }
|
|
roc_module = { path = "../module" }
|
|
roc_region = { path = "../region" }
|
|
roc_target = { path = "../roc_target" }
|
|
roc_utils = { path = "../../utils" }
|
|
|
|
tempfile.workspace = true
|
|
|
|
[build-dependencies]
|
|
roc_utils = { path = "../../utils" }
|
|
|
|
# dunce can be removed once ziglang/zig#5109 is fixed
|
|
dunce = "1.0.3"
|
|
|
|
[target.'cfg(target_os = "macos")'.build-dependencies]
|
|
tempfile.workspace = true
|