From 46f1f2d79e6cb1530e14479f5d7b4cae46b5a725 Mon Sep 17 00:00:00 2001 From: cxptbry Date: Sun, 13 Sep 2026 21:28:42 -0400 Subject: [PATCH] Upload files to "/" --- .gitignore | 1 + Cargo.lock | 46 ++++++++++++++++++++++++++++++++++++++++++++++ Cargo.toml | 16 ++++++++++++++++ 3 files changed, 63 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.lock create mode 100644 Cargo.toml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..90f8a64 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,46 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "autocfg" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53" + +[[package]] +name = "const-str" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18f12cc9948ed9604230cdddc7c86e270f9401ccbe3c2e98a4378c5e7632212f" + +[[package]] +name = "constcat" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "136d3e02915a2cea4d74caa8681e2d44b1c3254bdbf17d11d41d587ff858832c" + +[[package]] +name = "kosherC" +version = "0.1.0" +dependencies = [ + "const-str", + "constcat", + "num-traits", + "panic-halt", +] + +[[package]] +name = "num-traits" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" +dependencies = [ + "autocfg", +] + +[[package]] +name = "panic-halt" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a513e167849a384b7f9b746e517604398518590a9142f4846a32e3c2a4de7b11" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..6dc1227 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "kosherC" +version = "0.1.0" +edition = "2024" + +[dependencies] +const-str = "1.1.0" +constcat = "0.6.1" +num-traits = "0.2.19" +panic-halt = "1.0.0" + +[profile.dev] +panic = "abort" + +[profile.release] +panic = "abort"