[package]
edition = "2021"
rust-version = "1.83"
name = "tidepool-codegen"
version = "0.1.0"
authors = ["Inanna Malick <inanna@recursion.wtf>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cranelift-based JIT compiler for Tidepool Core"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/tidepool-heavy-industries/tidepool"
[lib]
name = "tidepool_codegen"
path = "src/lib.rs"
[[test]]
name = "effect_machine"
path = "tests/effect_machine.rs"
[[test]]
name = "emit_case"
path = "tests/emit_case.rs"
[[test]]
name = "emit_expr"
path = "tests/emit_expr.rs"
[[test]]
name = "emit_join"
path = "tests/emit_join.rs"
[[test]]
name = "emit_join_advanced"
path = "tests/emit_join_advanced.rs"
[[test]]
name = "emit_letrec_advanced"
path = "tests/emit_letrec_advanced.rs"
[[test]]
name = "emit_letrec_con"
path = "tests/emit_letrec_con.rs"
[[test]]
name = "emit_primop"
path = "tests/emit_primop.rs"
[[test]]
name = "gc_audit"
path = "tests/gc_audit.rs"
[[test]]
name = "gc_frame_walker"
path = "tests/gc_frame_walker.rs"
[[test]]
name = "haskell_suite_differential"
path = "tests/haskell_suite_differential.rs"
[[test]]
name = "heap_bridge_tests"
path = "tests/heap_bridge_tests.rs"
[[test]]
name = "heap_force_tests"
path = "tests/heap_force_tests.rs"
[[test]]
name = "proptest_compile"
path = "tests/proptest_compile.rs"
[[test]]
name = "proptest_differential"
path = "tests/proptest_differential.rs"
[[test]]
name = "proptest_host_fns"
path = "tests/proptest_host_fns.rs"
[[test]]
name = "scaffold"
path = "tests/scaffold.rs"
[[test]]
name = "signal_safety"
path = "tests/signal_safety.rs"
[[test]]
name = "stack_safety"
path = "tests/stack_safety.rs"
[[test]]
name = "tco"
path = "tests/tco.rs"
[[test]]
name = "tco_advanced"
path = "tests/tco_advanced.rs"
[[test]]
name = "test_clz_logic"
path = "tests/test_clz_logic.rs"
[dependencies.cranelift-codegen]
version = "=0.129.1"
[dependencies.cranelift-frontend]
version = "=0.129.1"
[dependencies.cranelift-jit]
version = "=0.129.1"
[dependencies.cranelift-module]
version = "=0.129.1"
[dependencies.cranelift-native]
version = "=0.129.1"
[dependencies.recursion]
version = "0.5.4"
[dependencies.target-lexicon]
version = "0.13"
[dependencies.tidepool-effect]
version = "0.1.0"
[dependencies.tidepool-eval]
version = "0.1.0"
[dependencies.tidepool-heap]
version = "0.1.0"
[dependencies.tidepool-repr]
version = "0.1.0"
[dev-dependencies.proptest]
version = "1"
[build-dependencies.cc]
version = "1"
[target."cfg(unix)".dependencies.libc]
version = "0.2"