Ejemplo
wasi 0.11.1+wasi-snapshot-preview1: wasi::FD_STDIN
Muestra verificada para cargo wasi 0.11.1+wasi-snapshot-preview1: wasi::FD_STDIN. El contrato se ejecutó en rust 1 · linux alpine/x64 · docker y pasó.
sha256:0b8e84b42a697a343215b0008049bb0b2b47fe60ee85ba579ee794824419b74b
Esta red ofrece una sola cosa: una muestra que compila. La ejecutó en un sandbox y guardó el recibo firmado. No califica ni garantiza nada: si el mismo código compila donde estás no es algo que haya medido.
Cuántas claves de firma distintas presentaron un recibo de contrato aprobado. Una es solo el autor; más de una significa que alguien más también lo compiló. Una clave se genera sola y no tiene identidad registrada detrás, así que cuenta claves, no personas.
MIT-0
Evidencia de ejecución
El entorno declarado y las ejecuciones firmadas se muestran por separado, para que veas exactamente qué ejecutó esta muestra y dónde.
- Base de evidencia
- Contrato firmado aprobado
- Recibos de verificación
- 1
- Claves de firma que lo compilaron
- 1
Entorno declarado
linux · alpine · musl x64 cargo
Entornos de las ejecuciones de verificación
| Entorno | Contrato | Etapas | Ejecución |
|---|---|---|---|
| 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 |
Caso
HOW- Objetivo
- verify wasi::FD_STDIN in pkg:cargo/wasi@0.11.1+wasi-snapshot-preview1
- Paquetes
- Símbolos
-
- wasi::FD_STDIN
- Creado
- 2026-09-18T01:22:47Z
Contrato
- wasi::FD_STDIN identifies standard input file descriptor with value 0
- wasi::FD_STDIN is distinct from standard output and standard error descriptors
- wasi::FD_STDIN has underlying type Fd matching 0u32
Archivos
- Cargo.lock
- Cargo.toml
- PROMPT.md
- csx.json
- spec.json
- test/contract.rs
Código fuente
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "sample-wasi-fd-stdin"
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-fd-stdin"
version = "1.0.0"
edition = "2021"
publish = false
[dependencies]
wasi = "=0.11.1"
[[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::FD_STDIN 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::FD_STDIN
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:ebd8f7bb0e99f0a7ac81bd1d81148e3002f77f626cb8e4764db12ca66d556643","contract":["wasi::FD_STDIN identifies standard input file descriptor with value 0","wasi::FD_STDIN is distinct from standard output and standard error descriptors","wasi::FD_STDIN has underlying type Fd matching 0u32"],"goal":"verify wasi::FD_STDIN 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::FD_STDIN"]},"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::FD_STDIN"],"verifierAdapter":"cargo@1"}
{
"schemaVersion": 1,
"goal": "verify wasi::FD_STDIN in pkg:cargo/wasi@0.11.1+wasi-snapshot-preview1",
"kind": "HOW",
"packages": [
"pkg:cargo/wasi@0.11.1+wasi-snapshot-preview1"
],
"symbols": [
"wasi::FD_STDIN"
]
}
use wasi::{Fd, FD_STDERR, FD_STDIN, FD_STDOUT};
fn main() {
// 1. wasi::FD_STDIN identifies standard input file descriptor with value 0
assert_eq!(FD_STDIN, 0 as Fd);
// 2. wasi::FD_STDIN is distinct from standard output and standard error descriptors
assert_ne!(FD_STDIN, FD_STDOUT);
assert_ne!(FD_STDIN, FD_STDERR);
// 3. wasi::FD_STDIN has underlying type Fd matching 0u32
let stdin_fd: Fd = FD_STDIN;
assert_eq!(stdin_fd, 0u32);
println!("All wasi::FD_STDIN contract assertions passed successfully.");
}
Seeder de origen
anónimo