Skip to content

Commit 8144df7

Browse files
committed
build: update to Rust 1.86.0
1 parent 3f45613 commit 8144df7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
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.85.0"
24+
rust-version = "1.86.0"
2525
version = "0.18.2"
2626

2727
[workspace.dependencies]

postgresql_extensions/src/extensions.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ pub async fn install(
6868
{
6969
// Attempt to uninstall the extension first
7070
uninstall(settings, namespace, name).await?;
71-
};
71+
}
7272

7373
let postgresql_version = get_postgresql_version(settings).await?;
7474
let repository = registry::get(namespace)?;

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.85.0"
2+
channel = "1.86.0"
33
profile = "default"

0 commit comments

Comments
 (0)