v0.1.0-pre.023

This commit is contained in:
2026-07-24 23:54:38 +02:00
parent 929c89cf9f
commit c30ba8a2d9
28 changed files with 203 additions and 160 deletions

View File

@@ -0,0 +1,15 @@
# file: kb-onchain-transport/Cargo.toml
# version: 2
[package]
name = "kb-onchain-transport"
version.workspace = true
edition.workspace = true
license.workspace = true
publish.workspace = true
[dependencies]
kb-core = { path = "../kb-core" }
[lints]
workspace = true

View File

@@ -0,0 +1,13 @@
// file: kb-onchain-transport/src/lib.rs
// version: 2
#![forbid(unsafe_code)]
#![deny(unreachable_pub)]
#![warn(missing_docs)]
//! Solana on-chain transport contracts.
/// Returns the crate migration status.
pub fn migration_status() -> &'static str {
return "scaffolded";
}