e7991adfaa
The base graph implementation has been moved into its own package, `graph`, and been made fully generic, ie the value on each vertex/edge is a parameterized type. This will allow us to use the graph for both syntax parsing (gg) and runtime evaluation (vm), with each use-case being able to use slightly different Value types.
12 lines
268 B
Modula-2
12 lines
268 B
Modula-2
module github.com/mediocregopher/ginger
|
|
|
|
go 1.18
|
|
|
|
require github.com/stretchr/testify v1.7.0
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.0 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
|
|
)
|