[package]
edition = "2021"
name = "rex_v8"
version = "0.20.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "V8 isolate pool and SSR engine for the Rex framework"
readme = false
license = "MIT"
repository = "https://github.com/limlabs/rex"
[lib]
name = "rex_v8"
path = "src/lib.rs"
[[test]]
name = "esm_module_registry"
path = "tests/esm_module_registry.rs"
[[test]]
name = "eval_tests"
path = "tests/eval_tests.rs"
[[test]]
name = "fetch"
path = "tests/fetch.rs"
[[test]]
name = "fs_sandbox"
path = "tests/fs_sandbox.rs"
[[test]]
name = "ssr_actions"
path = "tests/ssr_actions.rs"
[[test]]
name = "ssr_app_route"
path = "tests/ssr_app_route.rs"
[[test]]
name = "ssr_crypto"
path = "tests/ssr_crypto.rs"
[[test]]
name = "ssr_fs"
path = "tests/ssr_fs.rs"
[[test]]
name = "ssr_isolate"
path = "tests/ssr_isolate.rs"
[[test]]
name = "ssr_middleware"
path = "tests/ssr_middleware.rs"
[[test]]
name = "ssr_url"
path = "tests/ssr_url.rs"
[[test]]
name = "tcp"
path = "tests/tcp.rs"
[dependencies.anyhow]
version = "1"
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.futures]
version = "0.3"
[dependencies.reqwest]
version = "0.12"
features = ["rustls-tls"]
default-features = false
[dependencies.rex_core]
version = "0.20.0"
[dependencies.rustls]
version = "0.23"
features = [
"ring",
"std",
]
default-features = false
[dependencies.rustls-pki-types]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"net",
"sync",
]
[dependencies.tokio-rustls]
version = "0.26"
[dependencies.tracing]
version = "0.1"
[dependencies.v8]
version = "146"
[dependencies.webpki-roots]
version = "0.26"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"net",
"sync",
"macros",
"rt",
]
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[lints.clippy]
unwrap_used = "warn"
[lints.rust]
unsafe_code = "deny"