This commit is contained in:
2026-08-13 16:09:07 +02:00
parent 5f6c2ef45e
commit 199550bc82
25 changed files with 1233 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
# file: crates/ksp-core-lib/Cargo.toml
# version: 1
[package]
name = "ksp-core-lib"
version.workspace = true
edition.workspace = true
repository.workspace = true
[lints]
workspace = true

View File

@@ -0,0 +1,7 @@
// file: crates/ksp-core-lib/src/lib.rs
// version: 3
#![warn(missing_docs)]
#![deny(unreachable_pub)]
#![forbid(unsafe_code)]
//! Minimal core-library skeleton for the KSP foundation phase.