mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-14 09:52:54 +01:00
Winni Neessen
94f47d4369
Upgraded golang.org/x/crypto to v0.28.0 and golang.org/x/text to v0.19.0. These updates improve security and compatibility with recent changes in Go modules. Ensure to run `go mod tidy` to clean up any unused dependencies.
12 lines
206 B
Modula-2
12 lines
206 B
Modula-2
// SPDX-FileCopyrightText: 2022-2023 The go-mail Authors
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
module github.com/wneessen/go-mail
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
golang.org/x/crypto v0.28.0
|
|
golang.org/x/text v0.19.0
|
|
)
|