[package]
edition = "2024"
name = "sim-lib-machine"
version = "0.1.0"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Neutral policy contracts for bounded decoded-instruction machines."
homepage = "https://github.com/sim-nest/sim-runtime"
readme = "README.md"
license = "MPL-2.0"
repository = "https://github.com/sim-nest/sim-runtime"
[lib]
name = "sim_lib_machine"
path = "src/lib.rs"
[[test]]
name = "admission"
path = "tests/admission.rs"
[[test]]
name = "control_resume"
path = "tests/control_resume.rs"
[[test]]
name = "frame_calls_conformance"
path = "tests/frame_calls_conformance.rs"
[[test]]
name = "iterative_driver"
path = "tests/iterative_driver.rs"
[[test]]
name = "located_code"
path = "tests/located_code.rs"
[[test]]
name = "managed_safepoints"
path = "tests/managed_safepoints.rs"
[[test]]
name = "neutral_machine_specimens"
path = "tests/neutral_machine_specimens.rs"
[[test]]
name = "neutrality"
path = "tests/neutrality.rs"
[[test]]
name = "ownership_guard"
path = "tests/ownership_guard.rs"
[[test]]
name = "shuffle_properties"
path = "tests/shuffle_properties.rs"
[[test]]
name = "storage_properties"
path = "tests/storage_properties.rs"
[dependencies.sha2]
version = "0.10"
[dependencies.sim-kernel]
version = "0.2.1"
[dependencies.sim-lib-control]
version = "0.1.6"
[dependencies.sim-lib-mutation]
version = "0.1.5"
[dev-dependencies.toml]
version = "0.8"
[lints.rust]
unsafe_code = "forbid"