chore: upgrade starmelon dependencies

Upgrade deno_core 0.65 -> 0.127
This commit is contained in:
nobody 2023-09-22 20:41:34 +00:00
commit bdccb9cb88
Signed by: GrocerPublishAgent
GPG key ID: D460CD54A9E3AB86
6 changed files with 47 additions and 125 deletions

View file

@ -24,7 +24,7 @@ rustc-hash = "1.1"
home = "0.5"
# Required to transpile view functions to Rust
genco = "0.15"
genco = "0.17"
# Required to generate fixture Elm files
genco-extra = { path = "../../../infra/genco-extra" }
@ -32,10 +32,10 @@ genco-extra = { path = "../../../infra/genco-extra" }
# 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 rusty_v8 seem to break its build script.
deno_runtime = "0.65"
tokio = { version = "1.17", features = ["full"] }
deno_core = "0.139"
deno_web = "0.88"
deno_runtime = "0.127"
tokio = { version = "1.32", features = ["full"] }
deno_core = "0.214"
deno_web = "0.150"
futures = "0.3"
# Required to add sql query support to interpreter. Because deno expects sync
@ -43,7 +43,7 @@ futures = "0.3"
# functions. I read the code for oneshot
# (https://github.com/faern/oneshot/commit/9aa237f185e1b65d61bf92c20350cf7bee0aa88b)
# and it looks reasonable.
sqlx = { version = "0.6", features = [ "sqlite", "macros", "runtime-tokio-rustls", "chrono", "json", "uuid" ] }
sqlx = { version = "0.7", features = [ "sqlite", "macros", "runtime-tokio", "chrono", "json", "uuid" ] }
oneshot = "0.1.3"
# required for livetable derive macro