Skip to content

Commit

Permalink
Upgrade to sqlx 0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-k committed Mar 22, 2023
1 parent 42ab7c6 commit ddd7560
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion auditor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ prometheus = "0.13"
itertools = "0.10.5"

[dependencies.sqlx]
version = "0.6.2"
version = "0.6.3"
default-features = false
features = [
"runtime-actix-rustls",
Expand Down
2 changes: 1 addition & 1 deletion collectors/slurm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ serde_with = { version = "2.3.1", features = ["chrono_0_4"] }
serde_json = "1.0.93"

[dependencies.sqlx]
version = "0.6.2"
version = "0.6.3"
default-features = false
features = [
"runtime-actix-rustls",
Expand Down
4 changes: 2 additions & 2 deletions media/website/content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Now `sqlx` can be installed via `cargo`:

```bash
cargo install --version=0.6.2 sqlx-cli --no-default-features --features postgres,rustls
cargo install --version=0.6.3 sqlx-cli --no-default-features --features postgres,rustls
```

Clone the repository and `cd` into the directory.
Expand Down Expand Up @@ -181,7 +181,7 @@ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
### sqlx

```bash
cargo install --version=0.6.2 sqlx-cli --no-default-features --features postgres,rustls
cargo install --version=0.6.3 sqlx-cli --no-default-features --features postgres,rustls
```

### bunyan
Expand Down
2 changes: 1 addition & 1 deletion scripts/init_db.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fi
if ! [ -x "$(command -v sqlx)" ]; then
echo >&2 "Error: sqlx is not installed."
echo >&2 "Use:"
echo >&2 " cargo install --version=0.6.2 sqlx-cli --no-default-features --features postgres,rustls,sqlite"
echo >&2 " cargo install --version=0.6.3 sqlx-cli --no-default-features --features postgres,rustls,sqlite"
echo >&2 "to install it."
exit 1
fi
Expand Down
2 changes: 1 addition & 1 deletion scripts/init_slurm_collector_sqlite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -eo pipefail
if ! [ -x "$(command -v sqlx)" ]; then
echo >&2 "Error: sqlx is not installed."
echo >&2 "Use:"
echo >&2 " cargo install --version=0.6.2 sqlx-cli --no-default-features --features postgres,rustls,sqlite"
echo >&2 " cargo install --version=0.6.3 sqlx-cli --no-default-features --features postgres,rustls,sqlite"
echo >&2 "to install it."
exit 1
fi
Expand Down

0 comments on commit ddd7560

Please sign in to comment.