Skip to content
This repository was archived by the owner on Mar 16, 2024. It is now read-only.

Commit ddc50de

Browse files
committed
Bump toolchain to 1.76.0
We also need to fix the sqlite-bundled job to the yesterday nightly due to rust-lang/rust#120830
1 parent bc2b4ab commit ddc50de

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/workflows/doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
- name: Publish documentation
4343
if: success()
44-
uses: JamesIves/github-pages-deploy-action@v4.2.5
44+
uses: JamesIves/github-pages-deploy-action@v4
4545
with:
4646
token: ${{ secrets.GITHUB_TOKEN }}
4747
branch: gh-pages # The branch the action should deploy to.

diesel/src/pg/types/json.rs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,13 @@ impl ToSql<sql_types::Jsonb, Pg> for serde_json::Value {
4646
}
4747
}
4848

49-
#[cfg(tests)]
49+
#[cfg(test)]
5050
mod tests {
51-
use crate::query_builder::bind_types::ByteWrapper;
51+
use crate::deserialize::FromSql;
52+
use crate::pg::{Pg, PgValue};
53+
use crate::query_builder::bind_collector::ByteWrapper;
54+
use crate::serialize::{Output, ToSql};
55+
use crate::sql_types;
5256

5357
#[test]
5458
fn json_to_sql() {

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.74.0
1+
1.76.0

0 commit comments

Comments
 (0)