diff options
| author | Ellie Huxtable <ellie@atuin.sh> | 2025-07-22 16:03:20 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-22 16:03:20 +0200 |
| commit | e7819d258a29eeec0e9255a961fee3b44735afab (patch) | |
| tree | e76946f1906d29e999485f3b2bd424fc7375037f /crates/atuin-server-postgres/src | |
| parent | Update indicatif to 0.18.0 (#2833) (diff) | |
| download | atuin-e7819d258a29eeec0e9255a961fee3b44735afab.zip | |
chore: update to rust 1.88 (#2815)
* chore: update to rust 1.88
* clippy + fmt
* update ci version
* update flake
Diffstat (limited to 'crates/atuin-server-postgres/src')
| -rw-r--r-- | crates/atuin-server-postgres/src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/atuin-server-postgres/src/lib.rs b/crates/atuin-server-postgres/src/lib.rs index 005e8765..65e8efbf 100644 --- a/crates/atuin-server-postgres/src/lib.rs +++ b/crates/atuin-server-postgres/src/lib.rs @@ -55,8 +55,7 @@ impl Database for Postgres { if pg_major_version < MIN_PG_VERSION { return Err(DbError::Other(eyre::Report::msg(format!( - "unsupported PostgreSQL version {}, minimum required is {}", - pg_major_version, MIN_PG_VERSION + "unsupported PostgreSQL version {pg_major_version}, minimum required is {MIN_PG_VERSION}" )))); } |
