Use our fork of sqlx, for now

This commit is contained in:
Max Brunsfeld 2022-11-10 14:58:05 -08:00
parent 9ce3524eb8
commit 5d17347a45
2 changed files with 8 additions and 4 deletions

4
Cargo.lock generated
View file

@ -5604,6 +5604,7 @@ dependencies = [
[[package]]
name = "sqlx"
version = "0.6.2"
source = "git+https://github.com/zed-industries/sqlx?rev=a3488181818e2094f12c7eae59cdfacd254d50b3#a3488181818e2094f12c7eae59cdfacd254d50b3"
dependencies = [
"sqlx-core",
"sqlx-macros",
@ -5612,6 +5613,7 @@ dependencies = [
[[package]]
name = "sqlx-core"
version = "0.6.2"
source = "git+https://github.com/zed-industries/sqlx?rev=a3488181818e2094f12c7eae59cdfacd254d50b3#a3488181818e2094f12c7eae59cdfacd254d50b3"
dependencies = [
"ahash",
"atoi",
@ -5668,6 +5670,7 @@ dependencies = [
[[package]]
name = "sqlx-macros"
version = "0.6.2"
source = "git+https://github.com/zed-industries/sqlx?rev=a3488181818e2094f12c7eae59cdfacd254d50b3#a3488181818e2094f12c7eae59cdfacd254d50b3"
dependencies = [
"dotenvy",
"either",
@ -5686,6 +5689,7 @@ dependencies = [
[[package]]
name = "sqlx-rt"
version = "0.6.2"
source = "git+https://github.com/zed-industries/sqlx?rev=a3488181818e2094f12c7eae59cdfacd254d50b3#a3488181818e2094f12c7eae59cdfacd254d50b3"
dependencies = [
"once_cell",
"tokio",

View file

@ -50,8 +50,8 @@ tracing-log = "0.1.3"
tracing-subscriber = { version = "0.3.11", features = ["env-filter", "json"] }
[dependencies.sqlx]
# version = "0.6"
path = "../../../sqlx"
git = "https://github.com/zed-industries/sqlx"
rev = "a3488181818e2094f12c7eae59cdfacd254d50b3"
features = ["runtime-tokio-rustls", "postgres", "json", "time", "uuid"]
[dev-dependencies]
@ -80,8 +80,8 @@ serde_json = { version = "1.0", features = ["preserve_order"] }
unindent = "0.1"
[dev-dependencies.sqlx]
# version = "0.6"
path = "../../../sqlx"
git = "https://github.com/zed-industries/sqlx"
rev = "a3488181818e2094f12c7eae59cdfacd254d50b3"
features = ["sqlite"]
[features]