From 1c14fc146afe8cdb47cec5fee040afcdccb36a9d Mon Sep 17 00:00:00 2001 From: YetAnotherMinion Date: Thu, 23 Jun 2022 21:47:31 +0100 Subject: [PATCH] chore: upgrade to sqlx 0.6 --- Cargo.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index cb63b8a..e426baa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ edition = "2018" ahash = "0.7" elmi = { path = "../../../infra/rust-elmi", features = [ "genco" ] } naive-wadler-prettier= { path = "../../../infra/redwood-lang/compiler/naive-wadler-prettier" } -os_pipe = "0.9" +os_pipe = "1.0" serde = { version = "1.0", features = [ "derive" ] } serde_json = { version ="1.0", features = [] } structopt = { version = "0.3" } @@ -31,11 +31,11 @@ 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 rust_v8 seem to break its build script. -deno_runtime = "0.50" +# versions of rusty_v8 seem to break its build script. +deno_runtime = "0.65" tokio = { version = "1.17", features = ["full"] } -deno_core = "0.124" -deno_web = "0.73" +deno_core = "0.139" +deno_web = "0.88" 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.5", features = [ "sqlite", "macros", "runtime-tokio-rustls", "chrono", "json", "uuid" ] } +sqlx = { version = "0.6", features = [ "sqlite", "macros", "runtime-tokio-rustls", "chrono", "json", "uuid" ] } oneshot = "0.1.3" # required for livetable derive macro