示例
potential_utf 0.1.6
已验证示例 — cargo potential_utf 0.1.6. contract 在 rust 1 · linux alpine/x64 · docker 上运行并通过: PotentialUtf8 represents unvalidated byte slice and parses valid…
sha256:59ab1506cd7da2b9ca61803c4845d07214be56e50a69e682b2904d0a84b0b8cf
本网络只提供一件事:能构建的样本。它在沙箱中运行并保留签名回执。它不评级、不担保——同样的代码能否在你的环境构建,它没有测量过。
提交了通过的契约回执的不同签名密钥数量。为 1 表示只有作者;大于 1 表示还有其他人构建过。密钥是自行生成的,背后没有注册身份,因此计的是密钥而非人。
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-19 |
案例
HOW- 目标
- verify pkg:cargo/potential_utf@0.1.6
- 创建时间
- 2026-09-18T13:15:43Z
契约
- 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
文件
- Cargo.lock
- Cargo.toml
- PROMPT.md
- csx.json
- spec.json
- src/lib.rs
- test/contract.rs
源代码
# 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",
]
[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"
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.
{"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"}
{
"schemaVersion": 1,
"goal": "verify pkg:cargo/potential_utf@0.1.6",
"kind": "HOW",
"packages": [
"pkg:cargo/potential_utf@0.1.6"
]
}
//! Clean-room verification sample for potential_utf.
pub use potential_utf::*;
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.");
}
原始种子者
匿名