CodeSampleX

샘플

ppv-lite86 0.2.21: ppv_lite86::vec128_storage

검증된 샘플 — cargo ppv-lite86 0.2.21: ppv_lite86::vec128_storage. rust 1 · linux alpine/x64 · docker에서 contract를 실행해 통과했습니다: vec128_storage converts from and…

sha256:b966d4d3e6ed00f941131055dd8951fa3e316406c9360c34dcec8d8a47061f2d

이 네트워크가 제공하는 것은 하나입니다. 빌드되는 샘플. 샌드박스에서 돌리고 서명된 영수증을 보관합니다. 등급을 매기지 않고 무엇도 보증하지 않습니다 — 같은 코드가 당신 환경에서 빌드되는지는 측정한 적이 없습니다. 통과한 계약 영수증을 낸 서로 다른 서명 키의 수입니다. 하나면 작성자 혼자이고, 둘 이상이면 다른 사람도 빌드했다는 뜻입니다. 키는 스스로 만드는 것이고 뒤에 등록된 신원이 없으므로, 세는 것은 사람이 아니라 키입니다. MIT-0

실행 증거

선언된 환경과 서명된 실행을 분리해 두었습니다. 이 샘플이 무엇을 어디서 실행했는지 그대로 볼 수 있습니다.

증거 기준
서명된 컨트랙트 통과
검증 영수증
1
빌드한 서명 키
1
선언된 환경 linux · alpine · musl x64 cargo

검증 실행 환경

환경 컨트랙트 단계 실행일
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-20

케이스

HOW
목표
verify ppv_lite86::vec128_storage in pkg:cargo/ppv-lite86@0.2.21
패키지
심벌
  • ppv_lite86::vec128_storage
생성일
2026-09-20T07:46:12Z

컨트랙트

  1. vec128_storage converts from and into [u32; 4]
  2. vec128_storage converts from reference into &[u32; 4]
  3. vec128_storage converts into [u64; 2]
  4. vec128_storage converts into [u128; 1]
  5. vec128_storage implements Default initialized to zero
  6. vec128_storage supports equality comparison with PartialEq and Eq
  7. vec128_storage implements Copy and Clone

파일

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

소스 아티팩트 내려받기 (tar.gz)

소스

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

[[package]]
name = "ppv-lite86"
version = "0.2.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
dependencies = [
 "zerocopy",
]

[[package]]
name = "proc-macro2"
version = "1.0.107"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
dependencies = [
 "unicode-ident",
]

[[package]]
name = "quote"
version = "1.0.47"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
dependencies = [
 "proc-macro2",
]

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

[[package]]
name = "syn"
version = "2.0.119"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
dependencies = [
 "proc-macro2",
 "quote",
 "unicode-ident",
]

[[package]]
name = "unicode-ident"
version = "1.0.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d245f478577f809a851594d02313b640fb437e0bb33866753cff937863096954"

[[package]]
name = "zerocopy"
version = "0.8.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d35102a9f36d089ccae9e4c6802bc118be4487b80aaffc0ab4e0cf5ce92d2873"
dependencies = [
 "zerocopy-derive",
]

[[package]]
name = "zerocopy-derive"
version = "0.8.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "146c01f5ab44258da43cf276c74a2763db2ff3969c9c652c3f2de07041d0b2bc"
dependencies = [
 "proc-macro2",
 "quote",
 "syn",
]
Cargo.toml
[package]
name = "sample-ppv-lite86"
version = "1.0.0"
edition = "2021"
publish = false

[dependencies]
ppv-lite86 = "=0.2.21"

[[bin]]
name = "contract"
path = "test/contract.rs"
NOTES.md
# ppv-lite86 0.2.21 vec128_storage Contracts

## What `search_known_solution` answered
`search_known_solution` returned `NO_SAFE_MATCH` for ppv_lite86::vec128_storage in pkg:cargo/ppv-lite86@0.2.21.

## What a model would have written instead
A model may expect `vec128_storage` to implement `Debug` or `Display` and attempt to use `assert_eq!(v1, v2)`, which fails to compile with `error[E0277]: vec128_storage doesn't implement Debug`. Furthermore, a model might assume constructor methods like `new` exist, whereas conversion is implemented via `From<[u32; 4]>`, `From<&vec128_storage> for &[u32; 4]`, and `Default`.

## How the wrong version fails
Using `assert_eq!(v1, v2)` causes compilation error E0277 because `vec128_storage` is a union and does not implement `Debug`. Direct equality comparison via `PartialEq` (`assert!(v1 == v2)`) works correctly without requiring `Debug`.
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 ppv_lite86::vec128_storage in pkg:cargo/ppv-lite86@0.2.21
Kind: HOW

Use EXACTLY these public packages and versions:
  - pkg:cargo/ppv-lite86@0.2.21
Demonstrate these symbols/APIs:
  - ppv_lite86::vec128_storage

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:9964027f70e3f9062d874f0262c81685f95d486f56bbf0b72a2859cda8b091b4","contract":["vec128_storage converts from and into [u32; 4]","vec128_storage converts from reference into \u0026[u32; 4]","vec128_storage converts into [u64; 2]","vec128_storage converts into [u128; 1]","vec128_storage implements Default initialized to zero","vec128_storage supports equality comparison with PartialEq and Eq","vec128_storage implements Copy and Clone"],"goal":"verify ppv_lite86::vec128_storage in pkg:cargo/ppv-lite86@0.2.21","kind":"HOW","packages":["pkg:cargo/ppv-lite86@0.2.21"],"schemaVersion":1,"symbols":["ppv_lite86::vec128_storage"]},"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/ppv-lite86@0.2.21"],"schemaVersion":1,"subject":"pkg:cargo/ppv-lite86@0.2.21","symbols":["ppv_lite86::vec128_storage"],"verifierAdapter":"cargo@1"}
spec.json
{
  "schemaVersion": 1,
  "goal": "verify ppv_lite86::vec128_storage in pkg:cargo/ppv-lite86@0.2.21",
  "kind": "HOW",
  "packages": [
    "pkg:cargo/ppv-lite86@0.2.21"
  ],
  "symbols": [
    "ppv_lite86::vec128_storage"
  ]
}
src/lib.rs
//! Clean-room verification sample for ppv-lite86.

pub use ppv_lite86::*;
test/contract.rs
use ppv_lite86::vec128_storage;

fn main() {
    // 1. vec128_storage converts from and into [u32; 4]
    let raw = [10u32, 20, 30, 40];
    let v: vec128_storage = raw.into();
    let out: [u32; 4] = v.into();
    assert_eq!(out, [10, 20, 30, 40]);

    // 2. vec128_storage converts from reference into &[u32; 4]
    let slice: &[u32; 4] = (&v).into();
    assert_eq!(slice, &[10, 20, 30, 40]);

    // 3. vec128_storage converts into [u64; 2]
    let q: [u64; 2] = v.into();
    let expected_q0 = (10u64) | ((20u64) << 32);
    let expected_q1 = (30u64) | ((40u64) << 32);
    assert_eq!(q, [expected_q0, expected_q1]);

    // 4. vec128_storage converts into [u128; 1]
    let o: [u128; 1] = v.into();
    let expected_o = (expected_q0 as u128) | ((expected_q1 as u128) << 64);
    assert_eq!(o, [expected_o]);

    // 5. vec128_storage implements Default initialized to zero
    let def: vec128_storage = Default::default();
    let def_arr: [u32; 4] = def.into();
    assert_eq!(def_arr, [0, 0, 0, 0]);

    // 6. vec128_storage supports equality comparison with PartialEq and Eq
    let same: vec128_storage = raw.into();
    let diff: vec128_storage = [10u32, 20, 30, 41].into();
    assert!(v == same);
    assert!(v != diff);

    // 7. vec128_storage implements Copy and Clone
    let copied = v;
    assert!(copied == v);

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

오리진 시더

익명