Skip to content

Commit bf6c1ec

Browse files
authored
Merge pull request #415 from arjantop-cai/neo4j-no-cgo
Allow compilation of neo4j support without CGO.
2 parents 53ef02d + 271087a commit bf6c1ec

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

database/neo4j/neo4j.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package neo4j
22

33
import (
4-
"C" // import C so that we can't compile with CGO_ENABLED=0
54
"bytes"
65
"fmt"
76
"io"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ require (
3131
github.com/markbates/pkger v0.15.1
3232
github.com/mattn/go-sqlite3 v1.10.0
3333
github.com/nakagami/firebirdsql v0.0.0-20190310045651-3c02a58cfed8
34-
github.com/neo4j/neo4j-go-driver v1.8.0-beta02
34+
github.com/neo4j/neo4j-go-driver v1.8.0
3535
github.com/snowflakedb/gosnowflake v1.3.5
3636
github.com/stretchr/testify v1.5.1
3737
github.com/tidwall/pretty v0.0.0-20180105212114-65a9db5fad51 // indirect

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,8 @@ github.com/nakagami/firebirdsql v0.0.0-20190310045651-3c02a58cfed8 h1:P48LjvUQpT
291291
github.com/nakagami/firebirdsql v0.0.0-20190310045651-3c02a58cfed8/go.mod h1:86wM1zFnC6/uDBfZGNwB65O+pR2OFi5q/YQaEUid1qA=
292292
github.com/neo4j/neo4j-go-driver v1.8.0-beta02 h1:/z/q3q+T/E/oKqp3sGn7Mn1B8DL4JZevXO41hFLsDOE=
293293
github.com/neo4j/neo4j-go-driver v1.8.0-beta02/go.mod h1:0A49wIv0oP3uQdnbceK7Kc+snlY5B0F6dmtYArM0ltk=
294+
github.com/neo4j/neo4j-go-driver v1.8.0 h1:YRp9jsFcF9k/AnvbcqFCN9OMeIT2XTJgxOpp2Puq7OE=
295+
github.com/neo4j/neo4j-go-driver v1.8.0/go.mod h1:0A49wIv0oP3uQdnbceK7Kc+snlY5B0F6dmtYArM0ltk=
294296
github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
295297
github.com/onsi/ginkgo v1.7.0 h1:WSHQ+IS43OoUrWtD1/bbclrwK8TTH5hzp+umCiuxHgs=
296298
github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=

0 commit comments

Comments
 (0)