Skip to content

Commit 141eb30

Browse files
committed
Replaced go dep for gomod
1 parent 5857920 commit 141eb30

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+38
-20000
lines changed

Gopkg.lock

Lines changed: 0 additions & 94 deletions
This file was deleted.

Gopkg.toml

Lines changed: 0 additions & 30 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,11 @@
2121

2222
## Installation
2323

24-
**go-mail** requires a [supported release of Go](https://golang.org/doc/devel/release.html#policy) and [dep](https://github.com/golang/dep).
24+
**go-mail** requires a [supported release of Go](https://golang.org/doc/devel/release.html#policy).
2525
```bash
2626
$ go get -u github.com/mrz1836/go-mail
2727
```
2828

29-
Updating dependencies in **go-mail**:
30-
```bash
31-
$ cd ../go-mail
32-
$ dep ensure -update -v
33-
```
34-
3529
### Package Dependencies
3630
- domodwyer's [mailyak](https://github.com/domodwyer/mailyak)
3731
- keighl's [postmark](https://github.com/mrz1836/postmark)

go.mod

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
module github.com/mrz1836/go-mail
2+
3+
go 1.13
4+
5+
require (
6+
github.com/PuerkitoBio/goquery v1.5.0 // indirect
7+
github.com/aymerick/douceur v0.2.0
8+
github.com/domodwyer/mailyak v3.1.1+incompatible
9+
github.com/gorilla/css v1.0.0 // indirect
10+
github.com/mattbaird/gochimp v0.0.0-20180111040707-a267553896d1
11+
github.com/mrz1836/postmark v1.2.2
12+
github.com/sourcegraph/go-ses v0.0.0-20160405160939-6bd8d17cf7c1
13+
golang.org/x/net v0.0.0-20191126235420-ef20fe5d7933 // indirect
14+
)

go.sum

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
github.com/PuerkitoBio/goquery v1.5.0 h1:uGvmFXOA73IKluu/F84Xd1tt/z07GYm8X49XKHP7EJk=
2+
github.com/PuerkitoBio/goquery v1.5.0/go.mod h1:qD2PgZ9lccMbQlc7eEOjaeRlFQON7xY8kdmcsrnKqMg=
3+
github.com/andybalholm/cascadia v1.0.0 h1:hOCXnnZ5A+3eVDX8pvgl4kofXv2ELss0bKcqRySc45o=
4+
github.com/andybalholm/cascadia v1.0.0/go.mod h1:GsXiBklL0woXo1j/WYWtSYYC4ouU9PqHO0sqidkEA4Y=
5+
github.com/aymerick/douceur v0.2.0 h1:Mv+mAeH1Q+n9Fr+oyamOlAkUNPWPlA8PPGR0QAaYuPk=
6+
github.com/aymerick/douceur v0.2.0/go.mod h1:wlT5vV2O3h55X9m7iVYN0TBM0NH/MmbLnd30/FjWUq4=
7+
github.com/domodwyer/mailyak v3.1.1+incompatible h1:oPtXn3+56LEFbdqH0bpuPRsqtijW9l2POpQe9sTUsSI=
8+
github.com/domodwyer/mailyak v3.1.1+incompatible/go.mod h1:5NNYkn9hxcdNEOmmMx0yultN5VLorZQ+AWQo9iya+UY=
9+
github.com/gorilla/css v1.0.0 h1:BQqNyPTi50JCFMTw/b67hByjMVXZRwGha6wxVGkeihY=
10+
github.com/gorilla/css v1.0.0/go.mod h1:Dn721qIggHpt4+EFCcTLTU/vk5ySda2ReITrtgBl60c=
11+
github.com/mattbaird/gochimp v0.0.0-20180111040707-a267553896d1 h1:dkQj0GZch2rk/ODbwy17kP5tbmPcMGiw1KYOi6Ni0/w=
12+
github.com/mattbaird/gochimp v0.0.0-20180111040707-a267553896d1/go.mod h1:UaYd2gciRA1AoYEN6S+EiSNFK/0XHj9e1Wgloicgh6s=
13+
github.com/mrz1836/postmark v1.2.2 h1:SP0FihxskYraC1h+4Oxv1f4d3Csj3nMQ9PLyr1kQqdc=
14+
github.com/mrz1836/postmark v1.2.2/go.mod h1:mpI6b64GBYN7sNz0BQEaRtHK+D5546YDNQp9FtCEHaM=
15+
github.com/sourcegraph/go-ses v0.0.0-20160405160939-6bd8d17cf7c1 h1:2Ndulo7XO8FH6BqX62+FG9Hvl1uOBwDSrE6BAkTNHtA=
16+
github.com/sourcegraph/go-ses v0.0.0-20160405160939-6bd8d17cf7c1/go.mod h1:7pQ21TK+WkdBIwDfMovYhmNyGeBduRj3S089GgpNQ3g=
17+
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
18+
golang.org/x/net v0.0.0-20180218175443-cbe0f9307d01/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
19+
golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
20+
golang.org/x/net v0.0.0-20191126235420-ef20fe5d7933 h1:e6HwijUxhDe+hPNjZQQn9bA5PW3vNmnN64U2ZW759Lk=
21+
golang.org/x/net v0.0.0-20191126235420-ef20fe5d7933/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
22+
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
23+
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=

vendor/github.com/PuerkitoBio/goquery/LICENSE

Lines changed: 0 additions & 12 deletions
This file was deleted.

vendor/github.com/PuerkitoBio/goquery/array.go

Lines changed: 0 additions & 124 deletions
This file was deleted.

0 commit comments

Comments
 (0)