feat: upgrade v8 runtime crates
This commit is contained in:
parent
f882cf2c95
commit
80f7585153
9 changed files with 508 additions and 429 deletions
16
Cargo.toml
16
Cargo.toml
|
|
@ -32,13 +32,11 @@ elm-quote = { path = "../../../infra/rust-elm-quote" }
|
|||
# All of these are required for deno's javascript runtime. We need to keep the
|
||||
# same versions as other projects in our cargo workspace. Multiple different
|
||||
# versions of rust_v8 seem to break its build script.
|
||||
deno_runtime = "0.29.0"
|
||||
tokio = { version = "1.6", features = ["full"] }
|
||||
deno_core = "0.103.0"
|
||||
deno_web = "0.52"
|
||||
rusty_v8 = "0.32"
|
||||
futures = "0.3.15"
|
||||
serde_v8 = "0.15"
|
||||
deno_runtime = "0.50"
|
||||
tokio = { version = "1.17", features = ["full"] }
|
||||
deno_core = "0.124"
|
||||
deno_web = "0.73"
|
||||
futures = "0.3"
|
||||
|
||||
# Required to add sql query support to interpreter. Because deno expects sync
|
||||
# ops to be synchronous, we have to use a second async executor to run the sqlx
|
||||
|
|
@ -48,5 +46,9 @@ serde_v8 = "0.15"
|
|||
sqlx = { version = "0.5", features = [ "sqlite", "macros", "runtime-tokio-rustls", "chrono", "json", "uuid" ] }
|
||||
oneshot = "0.1.3"
|
||||
|
||||
# required for livetable derive macro
|
||||
livetable-core = { path = "../../../infra/livetable/core" }
|
||||
|
||||
|
||||
[dev-dependencies]
|
||||
aho-corasick = "0.7"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue