Feat/dep update (#30)
* feat: explicite use of blackfriday v2 for compatibilty purpose
This commit is contained in:
parent
97e4381206
commit
535ed84b17
|
@ -41,7 +41,7 @@
|
||||||
branch = "master"
|
branch = "master"
|
||||||
name = "github.com/jaytaylor/html2text"
|
name = "github.com/jaytaylor/html2text"
|
||||||
packages = ["."]
|
packages = ["."]
|
||||||
revision = "0ee88d3006305456b84cad14a24b2576f9411965"
|
revision = "63248bc9adbcc063665823c90e39eaf58aca7a8b"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
name = "github.com/mattn/go-runewidth"
|
name = "github.com/mattn/go-runewidth"
|
||||||
|
@ -61,12 +61,6 @@
|
||||||
revision = "792786c7400a136282c1664665ae0a8db921c6c2"
|
revision = "792786c7400a136282c1664665ae0a8db921c6c2"
|
||||||
version = "v1.0.0"
|
version = "v1.0.0"
|
||||||
|
|
||||||
[[projects]]
|
|
||||||
name = "github.com/russross/blackfriday"
|
|
||||||
packages = ["."]
|
|
||||||
revision = "cadec560ec52d93835bf2f15bd794700d3a2473b"
|
|
||||||
version = "v2.0.0"
|
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
name = "github.com/satori/go.uuid"
|
name = "github.com/satori/go.uuid"
|
||||||
packages = ["."]
|
packages = ["."]
|
||||||
|
@ -103,9 +97,15 @@
|
||||||
packages = ["html","html/atom"]
|
packages = ["html","html/atom"]
|
||||||
revision = "d866cfc389cec985d6fda2859936a575a55a3ab6"
|
revision = "d866cfc389cec985d6fda2859936a575a55a3ab6"
|
||||||
|
|
||||||
|
[[projects]]
|
||||||
|
name = "gopkg.in/russross/blackfriday.v2"
|
||||||
|
packages = ["."]
|
||||||
|
revision = "cadec560ec52d93835bf2f15bd794700d3a2473b"
|
||||||
|
version = "v2.0.0"
|
||||||
|
|
||||||
[solve-meta]
|
[solve-meta]
|
||||||
analyzer-name = "dep"
|
analyzer-name = "dep"
|
||||||
analyzer-version = 1
|
analyzer-version = 1
|
||||||
inputs-digest = "936b042897ce8e2126fd38e5f3b757eb564a83800341f0ad7ef55b27181e8770"
|
inputs-digest = "74f494e631dfdf63c96d26579f7f802e52dfe70480f1b3cfc03ef331eb223dea"
|
||||||
solver-name = "gps-cdcl"
|
solver-name = "gps-cdcl"
|
||||||
solver-version = 1
|
solver-version = 1
|
||||||
|
|
|
@ -33,10 +33,10 @@
|
||||||
branch = "master"
|
branch = "master"
|
||||||
name = "github.com/jaytaylor/html2text"
|
name = "github.com/jaytaylor/html2text"
|
||||||
|
|
||||||
[[constraint]]
|
|
||||||
name = "github.com/russross/blackfriday"
|
|
||||||
version = "2.0.0"
|
|
||||||
|
|
||||||
[[constraint]]
|
[[constraint]]
|
||||||
name = "github.com/stretchr/testify"
|
name = "github.com/stretchr/testify"
|
||||||
version = "1.1.4"
|
version = "1.1.4"
|
||||||
|
|
||||||
|
[[constraint]]
|
||||||
|
name = "gopkg.in/russross/blackfriday.v2"
|
||||||
|
version = "2.0.0"
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"github.com/Masterminds/sprig"
|
"github.com/Masterminds/sprig"
|
||||||
"github.com/imdario/mergo"
|
"github.com/imdario/mergo"
|
||||||
"github.com/jaytaylor/html2text"
|
"github.com/jaytaylor/html2text"
|
||||||
"github.com/russross/blackfriday"
|
"gopkg.in/russross/blackfriday.v2"
|
||||||
"html/template"
|
"html/template"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue