feat: init

This commit is contained in:
2025-12-31 22:35:48 +08:00
commit aab3b3d5c0
21 changed files with 4875 additions and 0 deletions

25
nix-js/Cargo.toml Normal file
View File

@@ -0,0 +1,25 @@
[package]
name = "nix-js"
version = "0.1.0"
edition = "2024"
[dependencies]
mimalloc = "0.1"
# REPL
anyhow = "1.0"
rustyline = "14.0"
regex = "1.11"
bumpalo = { version = "3.19", features = ["boxed"] }
hashbrown = "0.16"
derive_more = { version = "2", features = ["full"] }
thiserror = "2"
string-interner = "0.19"
v8 = "142.2"
deno_core = "0.376"
rnix = "0.12"
nix-js-macros = { path = "../nix-js-macros" }