From 8354a210538f8cba7250df2c7d1d6620aba949bf Mon Sep 17 00:00:00 2001 From: Nicolas JUHEL Date: Wed, 29 Dec 2021 16:17:33 +0100 Subject: [PATCH] Bump dependancies --- LICENSE | 2 +- go.mod | 2 +- ioutils/maxstdio/maxstdio.go | 1 + mailPooler/pooler.go | 5 +++-- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/LICENSE b/LICENSE index 1912f84..0236af3 100644 --- a/LICENSE +++ b/LICENSE @@ -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 diff --git a/go.mod b/go.mod index 01465df..9cf6458 100644 --- a/go.mod +++ b/go.mod @@ -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 diff --git a/ioutils/maxstdio/maxstdio.go b/ioutils/maxstdio/maxstdio.go index cd52999..a99ecff 100644 --- a/ioutils/maxstdio/maxstdio.go +++ b/ioutils/maxstdio/maxstdio.go @@ -1,3 +1,4 @@ +//go:build windows && cgo // +build windows,cgo /* diff --git a/mailPooler/pooler.go b/mailPooler/pooler.go index ed93739..e8744ce 100644 --- a/mailPooler/pooler.go +++ b/mailPooler/pooler.go @@ -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 {