Skip to content

Commit

Permalink
Merge pull request #77 from projectdiscovery/maint-exclude-openbsd
Browse files Browse the repository at this point in the history
Removing support for pebble
  • Loading branch information
Mzack9999 committed Mar 11, 2023
2 parents fd4bce7 + 497f7e9 commit 6e81602
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 531 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ const (
LevelDB DBType = iota
PogrebDB
BBoltDB
PebbleDB
BuntDB
)
```
Expand Down
24 changes: 0 additions & 24 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ go 1.18
require (
github.com/akrylysov/pogreb v0.10.1
github.com/bits-and-blooms/bloom/v3 v3.3.1
github.com/cockroachdb/pebble v0.0.0-20230224221607-fccb83b60d5c
github.com/hashicorp/golang-lru/v2 v2.0.1
github.com/pkg/errors v0.9.1
github.com/projectdiscovery/utils v0.0.14
Expand All @@ -17,37 +16,17 @@ require (
)

require (
github.com/DataDog/zstd v1.5.2 // indirect
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect
github.com/aymerick/douceur v0.2.0 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/bits-and-blooms/bitset v1.3.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/cockroachdb/errors v1.9.1 // indirect
github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect
github.com/cockroachdb/redact v1.1.3 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/getsentry/sentry-go v0.18.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/gorilla/css v1.0.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/klauspost/compress v1.16.0 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
github.com/microcosm-cc/bluemonday v1.0.21 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/onsi/ginkgo v1.16.4 // indirect
github.com/onsi/gomega v1.16.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/prometheus/client_golang v1.14.0 // indirect
github.com/prometheus/client_model v0.3.0 // indirect
github.com/prometheus/common v0.40.0 // indirect
github.com/prometheus/procfs v0.9.0 // indirect
github.com/rogpeppe/go-internal v1.9.0 // indirect
github.com/saintfish/chardet v0.0.0-20120816061221-3af4cd4741ca // indirect
github.com/tidwall/btree v1.4.3 // indirect
github.com/tidwall/gjson v1.14.3 // indirect
Expand All @@ -56,10 +35,7 @@ require (
github.com/tidwall/pretty v1.2.0 // indirect
github.com/tidwall/rtred v0.1.2 // indirect
github.com/tidwall/tinyqueue v0.1.1 // indirect
golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2 // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/text v0.7.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
292 changes: 0 additions & 292 deletions go.sum

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion store/disk/disk.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ const Megabyte = 1 << 20

var (
OpenPogrebDB func(string) (DB, error)
OpenPebbleDB func(string) (DB, error)
)
9 changes: 0 additions & 9 deletions store/disk/pebble_386_arm.go

This file was deleted.

203 changes: 0 additions & 203 deletions store/disk/pebble_all.go

This file was deleted.

1 change: 0 additions & 1 deletion store/hybrid/hybrid.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ const (
LevelDB DBType = iota
PogrebDB
BBoltDB
PebbleDB
BuntDB
)

Expand Down

0 comments on commit 6e81602

Please sign in to comment.