chore: upgrade to sqlx 0.6
This commit is contained in:
parent
88520e6858
commit
1c14fc146a
1 changed files with 6 additions and 6 deletions
12
Cargo.toml
12
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue