Skip to content
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

Upgrade to sqlx 0.6.3 #237

Merged
merged 1 commit into from
Mar 22, 2023
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 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