diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 380c810281ec..4d4af4c9f47e 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -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"; diff --git a/pkgs/development/tools/rust/sqlx-cli/default.nix b/pkgs/development/tools/rust/sqlx-cli/default.nix index 87a646834091..70973a455632 100644 --- a/pkgs/development/tools/rust/sqlx-cli/default.nix +++ b/pkgs/development/tools/rust/sqlx-cli/default.nix @@ -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 ]; }; }