diff --git a/auditor/Cargo.toml b/auditor/Cargo.toml index f0688b63..a55c74c1 100644 --- a/auditor/Cargo.toml +++ b/auditor/Cargo.toml @@ -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", diff --git a/collectors/slurm/Cargo.toml b/collectors/slurm/Cargo.toml index df3d557d..3690574c 100644 --- a/collectors/slurm/Cargo.toml +++ b/collectors/slurm/Cargo.toml @@ -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", diff --git a/media/website/content/_index.md b/media/website/content/_index.md index 1bb15262..359a6a83 100644 --- a/media/website/content/_index.md +++ b/media/website/content/_index.md @@ -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. @@ -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 diff --git a/scripts/init_db.sh b/scripts/init_db.sh index f80ca230..c888c85a 100755 --- a/scripts/init_db.sh +++ b/scripts/init_db.sh @@ -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 diff --git a/scripts/init_slurm_collector_sqlite.sh b/scripts/init_slurm_collector_sqlite.sh index abb272fe..93c32689 100755 --- a/scripts/init_slurm_collector_sqlite.sh +++ b/scripts/init_slurm_collector_sqlite.sh @@ -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