CodeSampleX

Exemplo

slab 0.4.12: slab::Slab

Amostra verificada para cargo slab 0.4.12: slab::Slab. O contrato rodou em rust 1 · linux alpine/x64 · docker e passou: Slab stores values and returns stable…

sha256:84a1cda25b13439a14970ef7f05b1ee96772bb9fcd8d07a590f4b5ac7e5d6393

Esta rede oferece uma coisa: uma amostra que compila. Ela a executou em um sandbox e guardou o recibo assinado. Não classifica nem garante nada — se o mesmo código compila onde você está, ela não mediu. Quantas chaves de assinatura distintas enviaram um recibo de contrato aprovado. Uma é só o autor; mais de uma significa que outra pessoa também o compilou. Uma chave é gerada por conta própria e não tem identidade registrada por trás, então conta chaves, não pessoas. MIT-0

Evidência de execução

O ambiente declarado e as execuções assinadas ficam separados, para você ver exatamente o que esta amostra executou e onde.

Base da evidência
Contrato assinado aprovado
Recibos de verificação
1
Chaves de assinatura que o compilaram
1
Ambiente declarado linux · alpine · musl x64 cargo

Ambientes das execuções de verificação

Ambiente Contrato Etapas Execução
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-16

Caso

HOW
Objetivo
verify pkg:cargo/slab@0.4.12
Pacotes
Símbolos
  • slab::Slab
Criado
2026-09-16T21:08:25Z

Contrato

  1. Slab stores values and returns stable usize keys
  2. Slab supports retrieval, mutation, and removal by key
  3. Slab tracks capacity, length, and entry vacation

Arquivos

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

Baixar o artefato de código-fonte (tar.gz)

Código-fonte

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

[[package]]
name = "sample-slab"
version = "1.0.0"
dependencies = [
 "slab",
]

[[package]]
name = "slab"
version = "0.4.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
Cargo.toml
[package]
name = "sample-slab"
version = "1.0.0"
edition = "2021"
publish = false

[dependencies]
slab = "=0.4.12"

[[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/slab@0.4.12
Kind: HOW

Use EXACTLY these public packages and versions:
  - pkg:cargo/slab@0.4.12
Demonstrate these symbols/APIs:
  - slab::Slab

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:b21df9f26e49841cc81683dfc2f6ebba9a18d0da90366e9d2c1a8c37fab82033","contract":["Slab stores values and returns stable usize keys","Slab supports retrieval, mutation, and removal by key","Slab tracks capacity, length, and entry vacation"],"goal":"verify pkg:cargo/slab@0.4.12","kind":"HOW","packages":["pkg:cargo/slab@0.4.12"],"schemaVersion":1,"symbols":["slab::Slab"]},"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/slab@0.4.12"],"schemaVersion":1,"subject":"pkg:cargo/slab@0.4.12","symbols":["slab::Slab"],"verifierAdapter":"cargo@1"}
spec.json
{
  "schemaVersion": 1,
  "goal": "verify pkg:cargo/slab@0.4.12",
  "kind": "HOW",
  "packages": [
    "pkg:cargo/slab@0.4.12"
  ],
  "symbols": [
    "slab::Slab"
  ]
}
src/lib.rs
//! Clean-room verification sample for slab.

pub use slab::*;
test/contract.rs
use slab::Slab;

fn main() {
    // 1. Slab stores values and returns stable usize keys
    let mut slab = Slab::new();
    let k0 = slab.insert("first");
    let k1 = slab.insert("second");
    assert_eq!(slab[k0], "first");
    assert_eq!(slab[k1], "second");
    assert_eq!(slab.len(), 2);
    assert!(!slab.is_empty());

    // 2. Slab supports retrieval, mutation, and removal by key
    if let Some(val) = slab.get_mut(k0) {
        *val = "first_modified";
    }
    assert_eq!(slab.get(k0), Some(&"first_modified"));
    assert_eq!(slab.contains(k0), true);
    let removed = slab.remove(k0);
    assert_eq!(removed, "first_modified");
    assert_eq!(slab.contains(k0), false);
    assert_eq!(slab.get(k0), None);
    assert_eq!(slab.len(), 1);

    // 3. Slab tracks capacity, length, and entry vacation
    let entry = slab.vacant_entry();
    assert_eq!(entry.key(), k0);
    let val_ref = entry.insert("reused_slot");
    assert_eq!(*val_ref, "reused_slot");
    assert_eq!(slab[k0], "reused_slot");
    assert_eq!(slab.len(), 2);

    println!("All slab contract assertions passed successfully.");
}

Seeder de origem

anônimo