[package]
edition = "2024"
name = "beamr"
version = "0.3.13"
authors = [
"Tom Whiting <tom@ablative.com.au>",
"Josh Bearup <Joshuabearup1@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust runtime with the BEAM's execution model, targeting Gleam"
readme = "README.md"
license = "MIT"
repository = "https://github.com/tomWhiting/yggdrasil"
resolver = "2"
[features]
json = [
"dep:base64",
"dep:serde_json",
]
test-support = []
[lib]
name = "beamr"
path = "src/lib.rs"
[[test]]
name = "gc_integration"
path = "tests/gc_integration.rs"
[[test]]
name = "hot_code_loading"
path = "tests/hot_code_loading.rs"
[[test]]
name = "namespace_isolation"
path = "tests/namespace_isolation.rs"
[[test]]
name = "otp_integration"
path = "tests/otp_integration.rs"
[[test]]
name = "otp_loading"
path = "tests/otp_loading.rs"
[[test]]
name = "otp_zero_unresolved"
path = "tests/otp_zero_unresolved.rs"
[[test]]
name = "proof_of_life"
path = "tests/proof_of_life.rs"
[[test]]
name = "sample_workflow_e2e"
path = "tests/sample_workflow_e2e.rs"
[[test]]
name = "stdlib_loading"
path = "tests/stdlib_loading.rs"
[[test]]
name = "supervision_integration"
path = "tests/supervision_integration.rs"
[dependencies.base64]
version = "0.22.1"
optional = true
[dependencies.crossbeam-deque]
version = "0.8.6"
[dependencies.crossbeam-queue]
version = "0.3.12"
[dependencies.dashmap]
version = "6.1.0"
[dependencies.flate2]
version = "1.1.9"
[dependencies.rand]
version = "0.10.1"
[dependencies.serde_json]
version = "1.0.150"
optional = true
[dev-dependencies.proptest]
version = "1.11.0"