81 lines
1.5 KiB
TOML
81 lines
1.5 KiB
TOML
[package]
|
|
name = "nix-js"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
mimalloc = "0.1"
|
|
|
|
tokio = { version = "1.41", features = ["rt-multi-thread", "sync", "net", "io-util"] }
|
|
nix-compat = { git = "https://git.snix.dev/snix/snix.git", version = "0.1.0", features = ["wire", "async"] }
|
|
|
|
# REPL
|
|
anyhow = "1.0"
|
|
rustyline = "14.0"
|
|
|
|
# Logging
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
derive_more = { version = "2", features = ["full"] }
|
|
thiserror = "2"
|
|
miette = { version = "7.4", features = ["fancy"] }
|
|
|
|
hashbrown = "0.16"
|
|
string-interner = "0.19"
|
|
|
|
rust-embed="8.11"
|
|
|
|
itertools = "0.14"
|
|
|
|
regex = "1.11"
|
|
|
|
deno_core = "0.376"
|
|
deno_error = "0.7"
|
|
|
|
nix-nar = "0.3"
|
|
sha2 = "0.10"
|
|
hex = "0.4"
|
|
|
|
base64 = "0.22"
|
|
|
|
# Fetcher dependencies
|
|
reqwest = { version = "0.12", features = ["blocking", "rustls-tls"], default-features = false }
|
|
tar = "0.4"
|
|
flate2 = "1.0"
|
|
xz2 = "0.1"
|
|
bzip2 = "0.5"
|
|
zip = "2.2"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
dirs = "5.0"
|
|
tempfile = "3.24"
|
|
rusqlite = { version = "0.33", features = ["bundled"] }
|
|
|
|
rnix = "0.12"
|
|
rowan = "0.15"
|
|
|
|
nix-js-macros = { path = "../nix-js-macros" }
|
|
ere = "0.2.4"
|
|
num_enum = "0.7.5"
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.5", features = ["html_reports"] }
|
|
|
|
[[bench]]
|
|
name = "basic_ops"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "builtins"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "thunk_scope"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "compile_time"
|
|
harness = false
|