just-engine 0.1.0

A ground-up ES6 JavaScript engine with tree-walking interpreter, bytecode VMs, and Cranelift JIT compiler
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 = "2018"
name = "just-engine"
version = "0.1.0"
authors = ["Nirupam Biswas <applegrew+cratesio@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A ground-up ES6 JavaScript engine with tree-walking interpreter, bytecode VMs, and Cranelift JIT compiler"
homepage = "https://github.com/applegrew/just"
documentation = "https://docs.rs/just-engine"
readme = "README.md"
keywords = [
    "javascript",
    "js",
    "interpreter",
    "jit",
    "compiler",
]
categories = [
    "compilers",
    "parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/applegrew/just"

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

[[bin]]
name = "benchmark"
path = "src/bin/benchmark.rs"

[[bin]]
name = "just"
path = "src/bin/just.rs"

[[test]]
name = "test_eval"
path = "tests/test_eval.rs"

[[test]]
name = "test_integration"
path = "tests/test_integration.rs"

[[test]]
name = "test_interpreter_superglobal"
path = "tests/test_interpreter_superglobal.rs"

[[test]]
name = "test_jit"
path = "tests/test_jit.rs"

[[test]]
name = "test_reg_jit"
path = "tests/test_reg_jit.rs"

[[test]]
name = "test_std_lib"
path = "tests/test_std_lib.rs"

[[bench]]
name = "benchmark_runner"
path = "benches/benchmark_runner.rs"
harness = false

[dependencies.cranelift]
version = "0.104"

[dependencies.cranelift-jit]
version = "0.104"

[dependencies.cranelift-module]
version = "0.104"

[dependencies.cranelift-native]
version = "0.104"

[dependencies.lazy_static]
version = "1.4.0"

[dependencies.pest]
version = "2.1.3"

[dependencies.pest_consume]
version = "1.0.6"

[dependencies.pest_consume_macros]
version = "1.0.6"

[dependencies.pest_derive]
version = "2.1.0"

[dependencies.uuid]
version = "0.8"
features = ["v4"]