Skip to content

chore: update to Rust 1.88.0 #201

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
--ci-number "${{ github.event.number }}" \
--github-actions "${{ secrets.GITHUB_TOKEN }}" \
--err \
"cargo bench"
"cargo bench --features blocking"

- name: Run benchmarks
if: ${{ github.event_name != 'pull_request' }}
Expand Down
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ edition = "2024"
keywords = ["postgresql", "postgres", "embedded", "database", "server"]
license = "(Apache-2.0 OR MIT) AND PostgreSQL"
repository = "https://github.com/theseus-rs/postgresql-embedded"
rust-version = "1.87.0"
rust-version = "1.88.0"
version = "0.19.0"

[workspace.dependencies]
Expand Down Expand Up @@ -65,7 +65,7 @@ tracing = "0.1.41"
tracing-indicatif = "0.3.9"
tracing-subscriber = "0.3.19"
url = "2.5.4"
zip = { version = "4.1.0", default-features = false, features = ["deflate"] }
zip = { version = "4.2.0", default-features = false, features = ["deflate"] }

[workspace.metadata.release]
shared-version = true
Expand Down
6 changes: 3 additions & 3 deletions postgresql_embedded/build/bundle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ pub(crate) async fn stage_postgresql_archive() -> Result<()> {
println!("Target: {}", target_triple::TARGET);

let out_dir = PathBuf::from(env::var("OUT_DIR")?);
println!("OUT_DIR: {:?}", out_dir);
println!("OUT_DIR: {out_dir:?}");

let mut archive_version_file = out_dir.clone();
archive_version_file.push("postgresql.version");
let mut archive_file = out_dir.clone();
archive_file.push("postgresql.tar.gz");

if archive_version_file.exists() && archive_file.exists() {
println!("PostgreSQL archive exists: {:?}", archive_file);
println!("PostgreSQL archive exists: {archive_file:?}");
return Ok(());
}

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

Ok(())
}
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.87.0"
channel = "stable"
profile = "default"