This commit is contained in:
2026-03-12 17:47:46 +08:00
parent 7a7229d70e
commit 0c9a391618
511 changed files with 234 additions and 12772 deletions

21
fix/src/lib.rs Normal file
View File

@@ -0,0 +1,21 @@
#![warn(clippy::unwrap_used)]
pub mod context;
pub mod error;
pub mod logging;
pub mod value;
mod bytecode;
mod derivation;
mod disassembler;
mod downgrade;
// mod fetcher;
mod ir;
mod nar;
mod nix_utils;
mod runtime;
mod store;
mod string_context;
#[global_allocator]
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;