CodeSampleX

Ejemplo

futures-channel 0.3.34

Muestra verificada para cargo futures-channel 0.3.34. El contrato se ejecutó en rust 1 · linux alpine/x64 · docker y pasó: oneshot::channel transmits a…

sha256:886bc718cda01ba258be1ef2740228677e5bb091a4a8899c5d51fcdabfe39312

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 pkg:cargo/futures-channel@0.3.34
Paquetes
Creado
2026-09-18T11:01:41Z

Contrato

  1. oneshot::channel transmits a single value successfully from Sender to Receiver
  2. oneshot::channel signals Canceled when Sender is dropped without sending
  3. oneshot::Receiver::close marks channel complete and Sender is_canceled returns true
  4. mpsc::unbounded transmits multiple values in FIFO order via unbounded_send and try_recv
  5. mpsc::channel with capacity limit returns TrySendError full when buffer is exhausted
  6. mpsc::Receiver::close closes the channel causing subsequent try_send to fail with disconnected

Archivos

  • Cargo.lock
  • Cargo.toml
  • PROMPT.md
  • csx.json
  • spec.json
  • src/lib.rs
  • test/contract.rs

Descargar el artefacto de código fuente (tar.gz)

Código fuente

Cargo.lock
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4

[[package]]
name = "futures-channel"
version = "0.3.34"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4"
dependencies = [
 "futures-core",
]

[[package]]
name = "futures-core"
version = "0.3.34"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"

[[package]]
name = "sample-futures-channel"
version = "1.0.0"
dependencies = [
 "futures-channel",
]
Cargo.toml
[package]
name = "sample-futures-channel"
version = "1.0.0"
edition = "2021"
publish = false

[dependencies]
futures-channel = "=0.3.34"

[[bin]]
name = "contract"
path = "test/contract.rs"
PROMPT.md
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 pkg:cargo/futures-channel@0.3.34
Kind: HOW

Use EXACTLY these public packages and versions:
  - pkg:cargo/futures-channel@0.3.34

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.
csx.json
{"case":{"caseId":"case:sha256:4435b732d48ed71704906ef530e91dc27d3b5188abc7aab423e30ec1fbb914ab","contract":["oneshot::channel transmits a single value successfully from Sender to Receiver","oneshot::channel signals Canceled when Sender is dropped without sending","oneshot::Receiver::close marks channel complete and Sender is_canceled returns true","mpsc::unbounded transmits multiple values in FIFO order via unbounded_send and try_recv","mpsc::channel with capacity limit returns TrySendError full when buffer is exhausted","mpsc::Receiver::close closes the channel causing subsequent try_send to fail with disconnected"],"goal":"verify pkg:cargo/futures-channel@0.3.34","kind":"HOW","packages":["pkg:cargo/futures-channel@0.3.34"],"schemaVersion":1},"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/futures-channel@0.3.34"],"schemaVersion":1,"subject":"pkg:cargo/futures-channel@0.3.34","verifierAdapter":"cargo@1"}
spec.json
{
  "schemaVersion": 1,
  "goal": "verify pkg:cargo/futures-channel@0.3.34",
  "kind": "HOW",
  "packages": [
    "pkg:cargo/futures-channel@0.3.34"
  ]
}
src/lib.rs
//! Clean-room verification sample for futures-channel.

pub use futures_channel::*;
test/contract.rs
use futures_channel::mpsc::{self, TryRecvError};
use futures_channel::oneshot;

fn main() {
    // 1. oneshot::channel transmits a single value successfully from Sender to Receiver
    {
        let (tx, mut rx) = oneshot::channel::<i32>();
        assert_eq!(rx.try_recv(), Ok(None));
        assert!(!tx.is_canceled());
        assert!(tx.send(42).is_ok());
        assert_eq!(rx.try_recv(), Ok(Some(42)));
    }

    // 2. oneshot::channel signals Canceled when Sender is dropped without sending
    {
        let (tx, mut rx) = oneshot::channel::<i32>();
        drop(tx);
        assert_eq!(rx.try_recv(), Err(oneshot::Canceled));
    }

    // 3. oneshot::Receiver::close marks channel complete and Sender is_canceled returns true
    {
        let (tx, mut rx) = oneshot::channel::<i32>();
        rx.close();
        assert!(tx.is_canceled());
        assert_eq!(tx.send(100), Err(100));
    }

    // 4. mpsc::unbounded transmits multiple values in FIFO order via unbounded_send and try_recv
    {
        let (tx, mut rx) = mpsc::unbounded::<&'static str>();
        assert!(tx.unbounded_send("first").is_ok());
        assert!(tx.unbounded_send("second").is_ok());
        assert_eq!(rx.try_recv(), Ok("first"));
        assert_eq!(rx.try_recv(), Ok("second"));
        assert_eq!(rx.try_recv(), Err(TryRecvError::Empty));
    }

    // 5. mpsc::channel with capacity limit returns TrySendError full when buffer is exhausted
    {
        let (mut tx, mut rx) = mpsc::channel::<u32>(1);
        assert!(tx.try_send(10).is_ok());
        assert!(tx.try_send(20).is_ok());
        let send_err = tx.try_send(30).unwrap_err();
        assert!(send_err.is_full());
        assert_eq!(send_err.into_inner(), 30);
        assert_eq!(rx.try_recv(), Ok(10));
        assert_eq!(rx.try_recv(), Ok(20));
        assert_eq!(rx.try_recv(), Err(TryRecvError::Empty));
    }

    // 6. mpsc::Receiver::close closes the channel causing subsequent try_send to fail with disconnected
    {
        let (mut tx, mut rx) = mpsc::channel::<u32>(1);
        rx.close();
        let err = tx.try_send(99).unwrap_err();
        assert!(err.is_disconnected());
        assert_eq!(rx.try_recv(), Err(TryRecvError::Closed));
    }

    println!("All futures-channel contract assertions passed successfully.");
}

Seeder de origen

anónimo