[package]
edition = "2024"
rust-version = "1.89"
name = "wvq-runtime"
version = "0.1.0-alpha.3"
authors = ["Sergii Ziborov <sergii.ziborov@gmail.com>"]
build = "build.rs"
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bounded test-runner adapters and evidence normalization for Weavatrix Quality"
homepage = "https://weavatrix.com"
readme = "README.md"
keywords = [
"weavatrix",
"quality",
"junit",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/Weavatrix/weavatrix-quality"
resolver = "2"
[lib]
name = "wvq_runtime"
path = "src/lib.rs"
[[test]]
name = "action_spans"
path = "tests/action_spans.rs"
[[test]]
name = "behavior"
path = "tests/behavior.rs"
[[test]]
name = "browser_bridge"
path = "tests/browser_bridge.rs"
[[test]]
name = "cassette"
path = "tests/cassette.rs"
[[test]]
name = "continuous_journal"
path = "tests/continuous_journal.rs"
[[test]]
name = "diff"
path = "tests/diff.rs"
[[test]]
name = "executor_registry"
path = "tests/executor_registry.rs"
[[test]]
name = "failure_reel"
path = "tests/failure_reel.rs"
[[test]]
name = "normalization"
path = "tests/normalization.rs"
[[test]]
name = "process"
path = "tests/process.rs"
[[test]]
name = "program"
path = "tests/program.rs"
[[test]]
name = "request_identity"
path = "tests/request_identity.rs"
[dependencies.process-wrap]
version = "10"
features = [
"std",
"process-group",
"job-object",
]
default-features = false
[dependencies.quick-xml]
version = "0.37"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2.0"
[dependencies.wvq-domain]
version = "0.1.0-alpha.3"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"