-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (35 loc) · 1.1 KB
/
Copy pathCargo.toml
File metadata and controls
41 lines (35 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "just-engine"
version = "0.1.0"
authors = ["Nirupam Biswas <applegrew+cratesio@gmail.com>"]
edition = "2018"
description = "A ground-up ES6 JavaScript engine with tree-walking interpreter, bytecode VMs, and Cranelift JIT compiler"
license = "MIT OR Apache-2.0"
repository = "https://github.com/applegrew/just"
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"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
pest = "2.1.3"
pest_derive = "2.1.0"
pest_consume = "1.0.6"
pest_consume_macros = "1.0.6"
uuid = { version = "0.8", features = ["v4"] }
lazy_static = "1.4.0"
cranelift = "0.104"
cranelift-jit = "0.104"
cranelift-module = "0.104"
cranelift-native = "0.104"
[[bin]]
name = "just"
path = "src/bin/just.rs"
[[bin]]
name = "benchmark"
path = "src/bin/benchmark.rs"
[[bench]]
name = "benchmark_runner"
path = "benches/benchmark_runner.rs"
harness = false