[package]
edition = "2021"
rust-version = "1.85"
name = "a3s-runtime"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Provider-neutral execution contract and client for A3S runtimes"
readme = "README.md"
license = "MIT"
repository = "https://github.com/A3S-Lab/Runtime"
[lib]
name = "a3s_runtime"
path = "src/lib.rs"
[[test]]
name = "conformance_profiles"
path = "tests/conformance_profiles.rs"
[[test]]
name = "deterministic_faults"
path = "tests/deterministic_faults.rs"
[[test]]
name = "general_runtime"
path = "tests/general_runtime.rs"
[[test]]
name = "process_races"
path = "tests/process_races.rs"
[[test]]
name = "protocol_golden"
path = "tests/protocol_golden.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.fs2]
version = "0.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"rt-multi-thread",
"sync",
"time",
]
[target."cfg(unix)".dependencies.libc]
version = "0.2"