CodeSampleX

Exemple

potential_utf 0.1.6

Échantillon vérifié pour cargo potential_utf 0.1.6. Le contrat s'est exécuté sur rust 1 · linux alpine/x64 · docker et a réussi.

sha256:59ab1506cd7da2b9ca61803c4845d07214be56e50a69e682b2904d0a84b0b8cf

Ce réseau offre une seule chose : un échantillon qui compile. Il l'a exécuté dans un bac à sable et conservé le reçu signé. Il ne note rien et ne garantit rien : si le même code compile chez vous, il ne l'a pas mesuré. Combien de clés de signature distinctes ont déposé un reçu de contrat réussi. Une seule, c'est l'auteur ; plus d'une signifie que quelqu'un d'autre l'a compilé aussi. Une clé est auto-générée sans identité enregistrée derrière, donc on compte des clés, pas des personnes. MIT-0

Preuves d'exécution

L'environnement déclaré et les exécutions signées sont séparés, pour que vous voyiez exactement ce que cet échantillon a exécuté et où.

Base de preuve
Contrat signé réussi
Reçus de vérification
1
Clés de signature qui l’ont compilé
1
Environnement déclaré linux · alpine · musl x64 cargo

Environnements des exécutions de vérification

Environnement Contrat Étapes Exécution
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

Cas

HOW
Objectif
verify pkg:cargo/potential_utf@0.1.6
Paquets
Créé
2026-09-18T13:15:43Z

Contrat

  1. PotentialUtf8 represents unvalidated byte slice and parses valid UTF-8 string via try_as_str or rejects invalid UTF-8 bytes
  2. PotentialUtf8 converts from str and byte slice and compares equal to str slices
  3. PotentialUtf16 decodes u16 slices to characters replacing invalid surrogates with replacement character
  4. PotentialCodePoint converts to and from valid char and converts invalid scalar values to replacement character via to_char_lossy
  5. PotentialCodePoint compares and orders with char and numeric representations

Fichiers

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

Télécharger l’artefact source (tar.gz)

Code source

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

[[package]]
name = "potential_utf"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661"
dependencies = [
 "serde_core",
 "writeable",
 "zerovec",
]

[[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-potential-utf"
version = "1.0.0"
dependencies = [
 "potential_utf",
]

[[package]]
name = "serde"
version = "1.0.229"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
dependencies = [
 "serde_core",
 "serde_derive",
]

[[package]]
name = "serde_core"
version = "1.0.229"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
dependencies = [
 "serde_derive",
]

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

[[package]]
name = "syn"
version = "3.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8593e8e72159ed2257d083c7a454a85cbf854f37a0966d8d483aff8c8a3ebcee"
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 = "writeable"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc"

[[package]]
name = "zerofrom"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"

[[package]]
name = "zerovec"
version = "0.11.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb0464e17806c1d976d5cba29399c7f08e516e279e2ba493f63123b5fca67dd8"
dependencies = [
 "serde",
 "zerofrom",
]
Cargo.toml
[package]
name = "sample-potential-utf"
version = "1.0.0"
edition = "2021"
publish = false

[dependencies]
potential_utf = "=0.1.6"

[[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/potential_utf@0.1.6
Kind: HOW

Use EXACTLY these public packages and versions:
  - pkg:cargo/potential_utf@0.1.6

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:9a76438c9bd17e25a3f3130d971a4bf7517cf486c31ce1a9eec89b805f089506","contract":["PotentialUtf8 represents unvalidated byte slice and parses valid UTF-8 string via try_as_str or rejects invalid UTF-8 bytes","PotentialUtf8 converts from str and byte slice and compares equal to str slices","PotentialUtf16 decodes u16 slices to characters replacing invalid surrogates with replacement character","PotentialCodePoint converts to and from valid char and converts invalid scalar values to replacement character via to_char_lossy","PotentialCodePoint compares and orders with char and numeric representations"],"goal":"verify pkg:cargo/potential_utf@0.1.6","kind":"HOW","packages":["pkg:cargo/potential_utf@0.1.6"],"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/potential_utf@0.1.6"],"schemaVersion":1,"subject":"pkg:cargo/potential_utf@0.1.6","verifierAdapter":"cargo@1"}
spec.json
{
  "schemaVersion": 1,
  "goal": "verify pkg:cargo/potential_utf@0.1.6",
  "kind": "HOW",
  "packages": [
    "pkg:cargo/potential_utf@0.1.6"
  ]
}
src/lib.rs
//! Clean-room verification sample for potential_utf.

pub use potential_utf::*;
test/contract.rs
use potential_utf::{PotentialCodePoint, PotentialUtf16, PotentialUtf8};

fn main() {
    // 1. PotentialUtf8 represents unvalidated byte slice and parses valid UTF-8 string via try_as_str or rejects invalid UTF-8 bytes
    let valid_bytes = b"Hello, CodeSampleX!";
    let p_valid = PotentialUtf8::from_bytes(valid_bytes);
    assert_eq!(p_valid.as_bytes(), valid_bytes);
    assert_eq!(p_valid.try_as_str(), Ok("Hello, CodeSampleX!"));

    let invalid_bytes = &[0xFF, 0xFE, 0xFD];
    let p_invalid = PotentialUtf8::from_bytes(invalid_bytes);
    assert_eq!(p_invalid.as_bytes(), invalid_bytes);
    assert!(p_invalid.try_as_str().is_err());

    // 2. PotentialUtf8 converts from str and byte slice and compares equal to str slices
    let from_str = PotentialUtf8::from_str("sample_test");
    assert_eq!(from_str, "sample_test");
    assert_eq!("sample_test", from_str);
    assert_eq!(from_str.len(), 11);

    // 3. PotentialUtf16 decodes u16 slices to characters replacing invalid surrogates with replacement character
    let u16_data = [0x0048, 0x0069, 0xD800, 0x0021];
    let p_utf16 = PotentialUtf16::from_slice(&u16_data);
    let chars: Vec<char> = p_utf16.chars().collect();
    assert_eq!(chars, vec!['H', 'i', char::REPLACEMENT_CHARACTER, '!']);

    // 4. PotentialCodePoint converts to and from valid char and converts invalid scalar values to replacement character via to_char_lossy
    let cp_ascii = PotentialCodePoint::from_char('A');
    assert_eq!(cp_ascii.try_to_char(), Ok('A'));
    assert_eq!(cp_ascii.to_char_lossy(), 'A');

    let cp_unicode = PotentialCodePoint::from_char('🦀');
    assert_eq!(cp_unicode.try_to_char(), Ok('🦀'));

    let cp_invalid = PotentialCodePoint::from_u24(0xD800);
    assert!(cp_invalid.try_to_char().is_err());
    assert_eq!(cp_invalid.to_char_lossy(), char::REPLACEMENT_CHARACTER);

    // 5. PotentialCodePoint compares and orders with char and numeric representations
    assert_eq!(cp_ascii, 'A');
    assert_eq!('A', cp_ascii);
    assert_eq!(u32::from(cp_ascii), 0x41);
    assert_eq!(PotentialCodePoint::from_u24(0x41), cp_ascii);
    assert!(cp_ascii < PotentialCodePoint::from_char('B'));

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

Seeder d'origine

anonyme