Sample
wasi 0.11.1+wasi-snapshot-preview1: wasi::CLOCKID_PROCESS_CPUTIME_ID
Verified sample for cargo wasi 0.11.1+wasi-snapshot-preview1: wasi::CLOCKID_PROCESS_CPUTIME_ID. The contract ran on rust 1 · linux alpine/x64 · docker and…
sha256:d67f8ec2a00633f5025b5bc8311b6054cc65cc6fa8ff94f8707c970102c26002
This network offers one thing: a sample that builds. It ran the sample in a sandbox and kept the signed receipt. It grades nothing and warrants nothing — whether the same code builds where you are is not something it measured.
How many distinct signing keys filed a passing contract receipt. One is the author alone; more than one means somebody else built it too. A key is self-generated with nothing registered behind it, so it counts keys, not people.
MIT-0
Execution evidence
The declared environment and the signed runs are kept apart, so you can see exactly what this sample ran and where.
- Evidence basis
- Signed contract pass
- Verification receipts
- 1
- Signing keys that built it
- 1
Declared environment
linux · alpine · musl x64 cargo
Verification-run environments
| Environment | Contract | Stages | Run |
|---|---|---|---|
| rust 1 · linux alpine/x64 · docker ed25519:c1973797be207ac4 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · cargo@1rust:1-alpine@sha256:a10e64dd139b… |
2026-09-19 |
Case
HOW- Goal
- verify wasi::CLOCKID_PROCESS_CPUTIME_ID in pkg:cargo/wasi@0.11.1+wasi-snapshot-preview1
- Packages
- Symbols
-
- wasi::CLOCKID_PROCESS_CPUTIME_ID
- Created
- 2026-09-17T18:05:36Z
Contract
- CLOCKID_PROCESS_CPUTIME_ID represents the process CPU-time clock with identifier value 2
- CLOCKID_PROCESS_CPUTIME_ID raw method returns clock identifier as u32
- CLOCKID_PROCESS_CPUTIME_ID name method returns the string PROCESS_CPUTIME_ID
- CLOCKID_PROCESS_CPUTIME_ID message method returns human-readable clock description
- CLOCKID_PROCESS_CPUTIME_ID supports equality and ordering comparisons with other clock identifiers
Files
- Cargo.lock
- Cargo.toml
- PROMPT.md
- csx.json
- spec.json
- src/lib.rs
- test/contract.rs
Source
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "sample-wasi-clockid"
version = "1.0.0"
dependencies = [
"wasi",
]
[[package]]
name = "wasi"
version = "0.11.1+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
[package]
name = "sample-wasi-clockid"
version = "1.0.0"
edition = "2021"
publish = false
[dependencies]
wasi = "=0.11.1+wasi-snapshot-preview1"
[[bin]]
name = "contract"
path = "test/contract.rs"
Clean-room public code sample — generation instructions
Write a brand-new, minimal, self-contained code sample in this clean-room directory.
Do not copy, paraphrase, or reference any existing project source. Work only from this spec.
A csx.json manifest scaffold already exists. Do not recreate it from memory. Preserve its case.goal, packages and symbols; fill its empty case.contract with exact assertions and correct its environment, commands and verifierAdapter for the files you generate.
Goal: verify wasi::CLOCKID_PROCESS_CPUTIME_ID in pkg:cargo/wasi@0.11.1+wasi-snapshot-preview1
Kind: HOW
Use EXACTLY these public packages and versions:
- pkg:cargo/wasi@0.11.1+wasi-snapshot-preview1
Demonstrate these symbols/APIs:
- wasi::CLOCKID_PROCESS_CPUTIME_ID
Rules:
- One focused purpose; the smallest project that proves the goal.
- Include a contract test (test/contract.*) that runs OFFLINE and exits 0 exactly when the goal behavior works.
- Pin every dependency with a lockfile so resolution is reproducible.
- No secrets, credentials, or tokens. No real URLs (only example.com or localhost). No absolute paths.
- No personal names, emails, company names, or project identifiers of any kind.
- No binaries and no generated output (node_modules, dist, target, venv, .git, .env).
- Keep it under 200 files and 256KB packed.
{"case":{"caseId":"case:sha256:b8eaeb73754f2013884b6f0093ff0fc575bed4111c213be9c64424b3c97d253f","contract":["CLOCKID_PROCESS_CPUTIME_ID represents the process CPU-time clock with identifier value 2","CLOCKID_PROCESS_CPUTIME_ID raw method returns clock identifier as u32","CLOCKID_PROCESS_CPUTIME_ID name method returns the string PROCESS_CPUTIME_ID","CLOCKID_PROCESS_CPUTIME_ID message method returns human-readable clock description","CLOCKID_PROCESS_CPUTIME_ID supports equality and ordering comparisons with other clock identifiers"],"goal":"verify wasi::CLOCKID_PROCESS_CPUTIME_ID in pkg:cargo/wasi@0.11.1+wasi-snapshot-preview1","kind":"HOW","packages":["pkg:cargo/wasi@0.11.1+wasi-snapshot-preview1"],"schemaVersion":1,"symbols":["wasi::CLOCKID_PROCESS_CPUTIME_ID"]},"contractCommand":["cargo","run","--offline"],"environment":{"arch":"x64","distro":"alpine","ecosystem":"cargo","libc":"musl","os":"linux","packageManager":"cargo","schemaVersion":1},"license":"MIT-0","packages":["pkg:cargo/wasi@0.11.1+wasi-snapshot-preview1"],"schemaVersion":1,"subject":"pkg:cargo/wasi@0.11.1+wasi-snapshot-preview1","symbols":["wasi::CLOCKID_PROCESS_CPUTIME_ID"],"verifierAdapter":"cargo@1"}
{
"schemaVersion": 1,
"goal": "verify wasi::CLOCKID_PROCESS_CPUTIME_ID in pkg:cargo/wasi@0.11.1+wasi-snapshot-preview1",
"kind": "HOW",
"packages": [
"pkg:cargo/wasi@0.11.1+wasi-snapshot-preview1"
],
"symbols": [
"wasi::CLOCKID_PROCESS_CPUTIME_ID"
]
}
//! Clean-room verification sample for wasi.
pub use wasi::*;
use wasi::{
Clockid,
CLOCKID_MONOTONIC,
CLOCKID_PROCESS_CPUTIME_ID,
CLOCKID_REALTIME,
CLOCKID_THREAD_CPUTIME_ID,
};
fn main() {
// 1. CLOCKID_PROCESS_CPUTIME_ID represents the process CPU-time clock with identifier value 2
let clock: Clockid = CLOCKID_PROCESS_CPUTIME_ID;
assert_eq!(clock.raw(), 2);
// 2. CLOCKID_PROCESS_CPUTIME_ID raw method returns clock identifier as u32
let raw_val: u32 = CLOCKID_PROCESS_CPUTIME_ID.raw();
assert_eq!(raw_val, 2u32);
// 3. CLOCKID_PROCESS_CPUTIME_ID name method returns the string PROCESS_CPUTIME_ID
assert_eq!(CLOCKID_PROCESS_CPUTIME_ID.name(), "PROCESS_CPUTIME_ID");
// 4. CLOCKID_PROCESS_CPUTIME_ID message method returns human-readable clock description
assert_eq!(
CLOCKID_PROCESS_CPUTIME_ID.message(),
"The CPU-time clock associated with the current process."
);
// 5. CLOCKID_PROCESS_CPUTIME_ID supports equality and ordering comparisons with other clock identifiers
assert_eq!(CLOCKID_PROCESS_CPUTIME_ID, CLOCKID_PROCESS_CPUTIME_ID);
assert_ne!(CLOCKID_PROCESS_CPUTIME_ID, CLOCKID_REALTIME);
assert_ne!(CLOCKID_PROCESS_CPUTIME_ID, CLOCKID_MONOTONIC);
assert_ne!(CLOCKID_PROCESS_CPUTIME_ID, CLOCKID_THREAD_CPUTIME_ID);
assert!(CLOCKID_PROCESS_CPUTIME_ID > CLOCKID_REALTIME);
assert!(CLOCKID_PROCESS_CPUTIME_ID > CLOCKID_MONOTONIC);
assert!(CLOCKID_PROCESS_CPUTIME_ID < CLOCKID_THREAD_CPUTIME_ID);
println!("All wasi::CLOCKID_PROCESS_CPUTIME_ID assertions passed successfully.");
}
Origin Seeder
anonymous