Merge pull request #243935 from fd/update-sqlx

sqlx-cli: 0.7.0 -> 0.7.1
This commit is contained in:
Nick Cao 2023-07-20 20:32:49 -06:00 committed by GitHub
commit 9c017f7164
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 4 deletions

View File

@ -5331,6 +5331,12 @@
githubId = 4246921;
name = "Florian Beeres";
};
fd = {
email = "simon.menke@gmail.com";
github = "fd";
githubId = 591;
name = "Simon Menke";
};
fdns = {
email = "fdns02@gmail.com";
github = "fdns";

View File

@ -14,16 +14,16 @@
rustPlatform.buildRustPackage rec {
pname = "sqlx-cli";
version = "0.7.0";
version = "0.7.1";
src = fetchFromGitHub {
owner = "launchbadge";
repo = "sqlx";
rev = "v${version}";
hash = "sha256-f9DCavvqq/a+1wusKlc3jOjyFRVMIAHGCryZxV5qews=";
hash = "sha256-567/uJPQhrNqDqBF/PqklXm2avSjvtQsddjChwUKUCI=";
};
cargoHash = "sha256-9vbrehtfw6ctIF7uXZPvODx3kkxz+m9h2Uv+2t45I0w=";
cargoHash = "sha256-X7fLbih1s3sxn8vb2kQeFUKDK2DlC+sjm9ZTwj3FD1Y=";
doCheck = false;
cargoBuildFlags = [ "-p sqlx-cli" ];
@ -42,6 +42,6 @@ rustPlatform.buildRustPackage rec {
"SQLx's associated command-line utility for managing databases, migrations, and enabling offline mode with sqlx::query!() and friends.";
homepage = "https://github.com/launchbadge/sqlx";
license = licenses.asl20;
maintainers = with maintainers; [ greizgh xrelkd ];
maintainers = with maintainers; [ greizgh xrelkd fd ];
};
}