mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-24 06:55:15 +00:00
34 lines
1,009 B
TOML
34 lines
1,009 B
TOML
[package]
|
|
name = "test_derive"
|
|
description = "Tests Roc's auto-derivers."
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
version.workspace = true
|
|
|
|
[[test]]
|
|
name = "test_derive"
|
|
path = "src/tests.rs"
|
|
|
|
[dev-dependencies]
|
|
roc_builtins = { path = "../builtins" }
|
|
roc_can = { path = "../can" }
|
|
roc_collections = { path = "../collections" }
|
|
roc_constrain = { path = "../constrain" }
|
|
roc_debug_flags = { path = "../debug_flags" }
|
|
roc_derive = { path = "../derive", features = ["debug-derived-symbols", "open-extension-vars"] }
|
|
roc_derive_key = { path = "../derive_key" }
|
|
roc_load_internal = { path = "../load_internal" }
|
|
roc_module = { path = "../module" }
|
|
roc_packaging = { path = "../../packaging" }
|
|
roc_region = { path = "../region" }
|
|
roc_reporting = { path = "../../reporting" }
|
|
roc_solve = { path = "../solve" }
|
|
roc_target = { path = "../roc_target" }
|
|
roc_types = { path = "../types" }
|
|
|
|
ven_pretty = { path = "../../vendor/pretty" }
|
|
|
|
bumpalo.workspace = true
|
|
insta.workspace = true
|