Skip to content

Commit c16e438

Browse files
committed
chore: update to Rust 1.88.0
1 parent 49b5e5c commit c16e438

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

.github/workflows/benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
--ci-number "${{ github.event.number }}" \
4242
--github-actions "${{ secrets.GITHUB_TOKEN }}" \
4343
--err \
44-
"cargo bench"
44+
"cargo bench --features blocking"
4545
4646
- name: Run benchmarks
4747
if: ${{ github.event_name != 'pull_request' }}

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ edition = "2024"
2121
keywords = ["postgresql", "postgres", "embedded", "database", "server"]
2222
license = "(Apache-2.0 OR MIT) AND PostgreSQL"
2323
repository = "https://github.com/theseus-rs/postgresql-embedded"
24-
rust-version = "1.87.0"
24+
rust-version = "1.88.0"
2525
version = "0.19.0"
2626

2727
[workspace.dependencies]
@@ -65,7 +65,7 @@ tracing = "0.1.41"
6565
tracing-indicatif = "0.3.9"
6666
tracing-subscriber = "0.3.19"
6767
url = "2.5.4"
68-
zip = { version = "4.1.0", default-features = false, features = ["deflate"] }
68+
zip = { version = "4.2.0", default-features = false, features = ["deflate"] }
6969

7070
[workspace.metadata.release]
7171
shared-version = true

postgresql_embedded/build/bundle.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ pub(crate) async fn stage_postgresql_archive() -> Result<()> {
4141
println!("Target: {}", target_triple::TARGET);
4242

4343
let out_dir = PathBuf::from(env::var("OUT_DIR")?);
44-
println!("OUT_DIR: {:?}", out_dir);
44+
println!("OUT_DIR: {out_dir:?}");
4545

4646
let mut archive_version_file = out_dir.clone();
4747
archive_version_file.push("postgresql.version");
4848
let mut archive_file = out_dir.clone();
4949
archive_file.push("postgresql.tar.gz");
5050

5151
if archive_version_file.exists() && archive_file.exists() {
52-
println!("PostgreSQL archive exists: {:?}", archive_file);
52+
println!("PostgreSQL archive exists: {archive_file:?}");
5353
return Ok(());
5454
}
5555

@@ -59,7 +59,7 @@ pub(crate) async fn stage_postgresql_archive() -> Result<()> {
5959
let mut file = File::create(archive_file.clone())?;
6060
file.write_all(&archive)?;
6161
file.sync_data()?;
62-
println!("PostgreSQL archive written to: {:?}", archive_file);
62+
println!("PostgreSQL archive written to: {archive_file:?}");
6363

6464
Ok(())
6565
}

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "1.87.0"
2+
channel = "stable"
33
profile = "default"

0 commit comments

Comments
 (0)