rusty_nodejs_repl 0.3.0

Run a Node.js Read Eval Print Loop from Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "rusty_nodejs_repl"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Run a Node.js Read Eval Print Loop from Rust"
readme = "README.md"
keywords = [
    "nodejs",
    "repl",
    "interpreter",
    "testing",
    "javascript",
]
categories = [
    "development-tools::testing",
    "parser-implementations",
    "compilers",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/cowlicks/rusty_nodejs_repl"

[features]
default = [
    "serde",
    "socket",
]
integration_utils = [
    "dep:tracing-tree",
    "dep:tracing-subscriber",
]
serde = [
    "dep:serde",
    "dep:serde_json",
]
socket = []

[lib]
name = "rusty_nodejs_repl"
path = "src/lib.rs"

[dependencies.async-process]
version = "2.2.4"

[dependencies.derive_builder]
version = "0.20.0"

[dependencies.futures-lite]
version = "2.3.0"

[dependencies.serde]
version = "1.0.217"
optional = true

[dependencies.serde_json]
version = "1.0.135"
optional = true

[dependencies.tempfile]
version = "3.12.0"

[dependencies.thiserror]
version = "1.0.63"

[dependencies.tokio]
version = "1.39.3"
features = [
    "rt",
    "macros",
    "time",
    "net",
    "io-util",
]

[dependencies.tracing]
version = "0.1.40"

[dependencies.tracing-subscriber]
version = "0.3.19"
features = [
    "env-filter",
    "fmt",
]
optional = true

[dependencies.tracing-tree]
version = "0.4.0"
optional = true

[dev-dependencies.tokio-test]
version = "0.4.4"