Skip to content

Commit 2ac9177

Browse files
authored
Merge branch 'main' into patch-1
2 parents 641aa01 + 4bda1f1 commit 2ac9177

File tree

4 files changed

+15
-13
lines changed

4 files changed

+15
-13
lines changed

Cargo.lock

Lines changed: 9 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ features = ["derive", "attr", "with-uuid", "with-chrono", "postgres-array"]
202202

203203
# Query builder
204204
[workspace.dependencies.sea-query-binder]
205-
version = "0.7.0-rc.1"
205+
version = "0.7.0-rc.2"
206206
features = [
207207
"sqlx",
208208
"sqlx-postgres",
@@ -311,8 +311,3 @@ sha2.opt-level = 3
311311
digest.opt-level = 3
312312
block-buffer.opt-level = 3
313313
generic-array.opt-level = 3
314-
315-
[patch.crates-io]
316-
# Waiting for https://github.com/SeaQL/sea-query/pull/810
317-
sea-query = { git = "https://github.com/sandhose/sea-query", branch = "binder/relax-sqlx-dependency" }
318-
sea-query-binder = { git = "https://github.com/sandhose/sea-query", branch = "binder/relax-sqlx-dependency" }

crates/tower/src/trace_context.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ trait AsInjector {
2121
}
2222

2323
impl<B> AsInjector for Request<B> {
24-
type Injector<'a> = HeaderInjector<'a> where Self: 'a;
24+
type Injector<'a>
25+
= HeaderInjector<'a>
26+
where
27+
Self: 'a;
2528

2629
fn as_injector(&mut self) -> Self::Injector<'_> {
2730
HeaderInjector(self.headers_mut())

deny.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,4 @@ deny = ["oldtime"]
9090
unknown-registry = "warn"
9191
unknown-git = "warn"
9292
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
93-
allow-git = ["https://github.com/sandhose/sea-query"]
93+
allow-git = []

0 commit comments

Comments
 (0)