[package]
edition = "2021"
rust-version = "1.83"
name = "tidepool-runtime"
version = "0.1.0"
authors = ["Inanna Malick <inanna@recursion.wtf>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runtime support for Tidepool applications"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/tidepool-heavy-industries/tidepool"
[lib]
name = "tidepool_runtime"
path = "src/lib.rs"
[[test]]
name = "cache_tests"
path = "tests/cache_tests.rs"
[[test]]
name = "concurrent_eval"
path = "tests/concurrent_eval.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "effect_fold_regression"
path = "tests/effect_fold_regression.rs"
[[test]]
name = "effect_prompt_sigill"
path = "tests/effect_prompt_sigill.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "prelude_coverage"
path = "tests/prelude_coverage.rs"
[[test]]
name = "proptest_gc_pressure"
path = "tests/proptest_gc_pressure.rs"
[[test]]
name = "proptest_jit_vs_eval"
path = "tests/proptest_jit_vs_eval.rs"
[[test]]
name = "proptest_letrec"
path = "tests/proptest_letrec.rs"
[[test]]
name = "repro_split"
path = "tests/repro_split.rs"
[[test]]
name = "show_double_10effect"
path = "tests/show_double_10effect.rs"
[[test]]
name = "show_double_lens_sigill"
path = "tests/show_double_lens_sigill.rs"
[[test]]
name = "test_error_msg"
path = "tests/test_error_msg.rs"
[[test]]
name = "text_filter_gc"
path = "tests/text_filter_gc.rs"
[[test]]
name = "text_module_coverage"
path = "tests/text_module_coverage.rs"
[[test]]
name = "text_spliton"
path = "tests/text_spliton.rs"
[[test]]
name = "user_library"
path = "tests/user_library.rs"
[[test]]
name = "value_case_match"
path = "tests/value_case_match.rs"
[dependencies.blake3]
version = "1"
[dependencies.serde_json]
version = "1"
[dependencies.tempfile]
version = "3"
[dependencies.tidepool-codegen]
version = "0.1.0"
[dependencies.tidepool-effect]
version = "0.1.0"
[dependencies.tidepool-eval]
version = "0.1.0"
[dependencies.tidepool-repr]
version = "0.1.0"
[dev-dependencies.frunk]
version = "0.4"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.tidepool-bridge]
version = "0.1.0"
[dev-dependencies.tidepool-bridge-derive]
version = "0.1.0"
[dev-dependencies.tidepool-effect]
version = "0.1.0"
[dev-dependencies.tidepool-eval]
version = "0.1.0"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
]