Skip to content

Commit

Permalink
Bump toolchain to 1.76.0
Browse files Browse the repository at this point in the history
We also need to fix the sqlite-bundled job to the yesterday nightly due
to rust-lang/rust#120830
  • Loading branch information
weiznich committed Mar 14, 2024
1 parent bc2b4ab commit ddc50de
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

- name: Publish documentation
if: success()
uses: JamesIves/github-pages-deploy-action@v4.2.5
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages # The branch the action should deploy to.
Expand Down
8 changes: 6 additions & 2 deletions diesel/src/pg/types/json.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,13 @@ impl ToSql<sql_types::Jsonb, Pg> for serde_json::Value {
}
}

#[cfg(tests)]
#[cfg(test)]
mod tests {
use crate::query_builder::bind_types::ByteWrapper;
use crate::deserialize::FromSql;
use crate::pg::{Pg, PgValue};
use crate::query_builder::bind_collector::ByteWrapper;
use crate::serialize::{Output, ToSql};
use crate::sql_types;

#[test]
fn json_to_sql() {
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.74.0
1.76.0

0 comments on commit ddc50de

Please sign in to comment.