Skip to content
Cargo.toml 1.61 KiB
Newer Older
theMackabu's avatar
theMackabu committed
[package]
theMackabu's avatar
theMackabu committed
name = "justjs"
version = "0.5.2"
theMackabu's avatar
theMackabu committed
edition = "2021"
theMackabu's avatar
theMackabu committed
license = "MIT"
theMackabu's avatar
theMackabu committed
homepage = "https://justjs.dev"
repository = "https://github.com/exact-rs/just"
description = "A modern runtime for javascript."
theMackabu's avatar
theMackabu committed

theMackabu's avatar
theMackabu committed
[[bin]]
name = "just"
path = "src/main.rs"

theMackabu's avatar
theMackabu committed
[dependencies]
# local
state = { package = "just_state", path = "./crates/state", version = "0.1.3" }
macros = { package = "just_macros", path = "./crates/macros", version = "0.1.1" }
theMackabu's avatar
theMackabu committed
colored = "2"
theMackabu's avatar
theMackabu committed
url = "2.3.1"
theMackabu's avatar
theMackabu committed
hex = "0.4.3"
theMackabu's avatar
theMackabu committed
tar = "0.4.38"
theMackabu's avatar
theMackabu committed
dirs = "4.0.0"
home = "0.5.4"
open = "3.2.0"
warp = "0.3.3"
log = "0.4.17"
theMackabu's avatar
theMackabu committed
sha2 = "0.10.6"
theMackabu's avatar
theMackabu committed
brown = "0.2.0"
sled = "0.34.7"
theMackabu's avatar
theMackabu committed
libc = "0.2.137"
theMackabu's avatar
theMackabu committed
nanoid = "0.4.0"
theMackabu's avatar
theMackabu committed
base64 = "0.20.0"
theMackabu's avatar
theMackabu committed
flate2 = "1.0.25"
theMackabu's avatar
theMackabu committed
anyhow = "1.0.66"
theMackabu's avatar
theMackabu committed
sqlite = "0.30.1"
serde = "1.0.147"
theMackabu's avatar
theMackabu committed
inquire = "0.5.2"
question = "0.2.2"
theMackabu's avatar
theMackabu committed
data-url = "0.2.0"
theMackabu's avatar
theMackabu committed
rustyline = "9.1.2"
theMackabu's avatar
theMackabu committed
indicatif = "0.17.2"
theMackabu's avatar
theMackabu committed
serde_json = "1.0.87"
serde_yaml = "0.9.14"
theMackabu's avatar
theMackabu committed
zip-extract = "0.1.1"
theMackabu's avatar
theMackabu committed
esbuild-rs = "0.13.8"
theMackabu's avatar
theMackabu committed
futures-util = "0.3.25"
theMackabu's avatar
theMackabu committed
v_htmlescape = "0.15.8"
data-encoding = "2.3.2"
theMackabu's avatar
theMackabu committed
async-process = "1.6.0"
theMackabu's avatar
theMackabu committed
duration-string = "0.1.1" 
theMackabu's avatar
theMackabu committed
tokio = { version = "1.24.2", features = ["full"] }
theMackabu's avatar
theMackabu committed
clap = { version = "4.0.27", features = ["derive"] }
shell = { version = "0.2.0", package = "rust-shell" }
theMackabu's avatar
theMackabu committed
engine = { package = "deno_core", version = "0.160.0" }
uuid = { version = "0.8.0", features = ["v4"], default-features = false }
theMackabu's avatar
theMackabu committed
ast = { package = "deno_ast", version = "0.21.0", features = ["transpiling"] }
reqwest = { version = "0.11.12", features = ["blocking", "json", "multipart", "stream"] }
theMackabu's avatar
theMackabu committed

theMackabu's avatar
theMackabu committed
[build-dependencies]
theMackabu's avatar
theMackabu committed
chrono = "0.4.23"