pam_ussh/go.mod
Renovate[BOT] 37cb9325da
All checks were successful
Build Module / Build Module (push) Successful in 4m45s
fix(deps): update module golang.org/x/crypto to v0.40.0 (#45)
Reviewed-on: #45
Co-authored-by: Renovate[BOT] <renovate-bot@auengun.net>
Co-committed-by: Renovate[BOT] <renovate-bot@auengun.net>
2025-07-14 02:29:40 +00:00

35 lines
1.2 KiB
Modula-2

// Custom build of Uber's SSH Certificate PAM module
// Source available at git.auengun.net/GregoryDosh/pam_ussh
// Copyright (C) 2024 GregoryDosh
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
// SPDX-License-Identifier: AGPL-3.0-or-later
// SPDX-FileCopyrightText: 2024 GregoryDosh
module git.auengun.net/GregoryDosh/pam-ussh
go 1.24.0
require (
github.com/stretchr/testify v1.10.0
golang.org/x/crypto v0.40.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.34.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)