Bump dependancies

This commit is contained in:
Nicolas JUHEL
2021-12-29 16:17:33 +01:00
parent 561a4c923b
commit 8354a21053
4 changed files with 6 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
MIT License
Copyright (c) 2020 Nicolas JUHEL
Copyright (c) 2022 Nicolas JUHEL
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

2
go.mod
View File

@@ -10,7 +10,7 @@ require (
github.com/aws/aws-sdk-go-v2/service/s3 v1.22.0
github.com/c-bata/go-prompt v0.2.6
github.com/fatih/color v1.13.0
github.com/fxamacker/cbor/v2 v2.3.0
github.com/fxamacker/cbor/v2 v2.3.1
github.com/gin-gonic/gin v1.7.7
github.com/go-ldap/ldap/v3 v3.4.1
github.com/go-playground/validator/v10 v10.9.0

View File

@@ -1,3 +1,4 @@
//go:build windows && cgo
// +build windows,cgo
/*

View File

@@ -28,10 +28,11 @@ package mailPooler
import (
"context"
"errors"
liberr "github.com/nabbar/golib/errors"
libsmtp "github.com/nabbar/golib/smtp"
"io"
"net/smtp"
liberr "github.com/nabbar/golib/errors"
libsmtp "github.com/nabbar/golib/smtp"
)
type Pooler interface {