Restaged repo, allocator and runtime implemented, ioring-backed async fs/net/channel/timer primitives

This commit is contained in:
2026-03-19 17:54:29 -04:00
commit 3fd8209420
51 changed files with 11471 additions and 0 deletions

13
lib/runtime/Cargo.toml Normal file
View File

@@ -0,0 +1,13 @@
[package]
name = "ruin-runtime"
version = "0.1.0"
edition = "2024"
[dependencies]
hyper = { version = "1.8", default-features = false, features = ["client", "http1"] }
libc = "0.2"
ruin_runtime_proc_macros = { package = "ruin-runtime-proc-macros", path = "../runtime_proc_macros" }
[dev-dependencies]
bytes = "1"
http-body-util = "0.1"