Skip to content

Commit 77ed941

Browse files
committed
refactor: drop bolt and use bbolt
Signed-off-by: Christian Stewart <christian@aperture.us>
1 parent 45a2f8d commit 77ed941

File tree

8 files changed

+8
-354
lines changed

8 files changed

+8
-354
lines changed

go.mod

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ require (
66
github.com/aperturerobotics/common v0.16.12
77
github.com/aperturerobotics/protobuf-go-lite v0.6.5
88
github.com/badgerodon/peg v0.0.0-20130729175151-9e5f7f4d07ca
9-
github.com/boltdb/bolt v1.3.1
109
github.com/cockroachdb/pebble v1.1.1
1110
github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548
1211
github.com/dennwc/graphql v0.4.19-0.20180603144102-12cfed44bc5d

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,6 @@ github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24
6262
github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8=
6363
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
6464
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
65-
github.com/boltdb/bolt v1.3.1 h1:JQmyP4ZBrce+ZQu0dY660FMfatumYDLun9hBCUVIkF4=
66-
github.com/boltdb/bolt v1.3.1/go.mod h1:clJnj/oiGkjum5o1McbSZDSLxVThjynRyGBgiAx27Ps=
6765
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
6866
github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
6967
github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=

graph/kv/bolt/bolt.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
"github.com/aperturerobotics/cayley/graph"
2323
"github.com/aperturerobotics/cayley/graph/kv"
2424
hkv "github.com/aperturerobotics/cayley/kv"
25-
"github.com/aperturerobotics/cayley/kv/bolt"
25+
bolt "github.com/aperturerobotics/cayley/kv/bolt"
2626
)
2727

2828
func init() {

kv/all/all.go

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

33
import (
4-
_ "github.com/aperturerobotics/cayley/kv/bbolt"
54
_ "github.com/aperturerobotics/cayley/kv/bolt"
65
_ "github.com/aperturerobotics/cayley/kv/flat/all"
76
)

kv/bbolt/bolt.go

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

kv/bbolt/bolt_test.go

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

0 commit comments

Comments
 (0)