github.com/golang/snappy
go
pkg:golang/github.com/golang/snappy
78 Dependabot PRs
2 months ago
52 repositories
0 repositories
Recent PRs
go: bump the go group across 5 directories with 11 updates
go: bump the go group across 5 directories with 11 updates
grass-dev-pa/oasis-sdk-003 #11
go: bump github.com/golang/snappy from 0.0.4 to 1.0.0 in /go
grass-dev-pa/oasis-core-010 #1
Bump github.com/golang/snappy from 0.0.4 to 1.0.0
dylan-asos/grafana #333
Chore(deps): Bump github.com/golang/snappy from 0.0.4 to 1.0.0
harmoni-code-review-benchmarking/grafana__grafana__harmoni-engineer__PR97529__20260328 #7
Bump the dev-dependencies group across 1 directory with 47 updates
chore(deps): bump github.com/golang/snappy from 0.0.4 to 1.0.0 in /pebble
gofiber/storage #2228
chore(deps): bump github.com/golang/snappy from 0.0.4 to 1.0.0 in /badger
gofiber/storage #2180
chore(deps): bump github.com/golang/snappy from 0.0.4 to 1.0.0 in /mongodb
gofiber/recipes #3786
chore(deps): bump github.com/golang/snappy from 0.0.4 to 1.0.0 in /hexagonal
gofiber/recipes #3784
Bump github.com/golang/snappy from 0.0.4 to 1.0.0
madeshv5543/custom-grafana #125
chore(deps): bump github.com/golang/snappy from 0.0.4 to 1.0.0
scarruccio94/demoinfocs-golang-v5-fixed #5
Bump the dev-dependencies group across 1 directory with 43 updates
go: bump the go group across 6 directories with 11 updates
go: bump the go group across 6 directories with 11 updates
Bump github.com/golang/snappy from 0.0.4 to 1.0.0
paketo-buildpacks/pip-install #496
Bump github.com/golang/snappy from 0.0.4 to 1.0.0
paketo-buildpacks/pipenv-install #508
chore(deps)(deps): bump github.com/golang/snappy from 0.0.1 to 1.0.0
chore(deps): bump the dependencies group across 1 directory with 13 updates
Scalingo/terraform-provider-osc #286
chore(deps): bump the dependencies group across 1 directory with 47 updates
Scalingo/terraform-provider-osc #284
Bump github.com/golang/snappy from 0.0.4 to 1.0.0
dependabot(gomod): bump github.com/golang/snappy from 0.0.5-0.20220116011046-fa5810519dcb to 1.0.0
dome/optimism-op-node-finalize #7
dependabot(gomod): bump github.com/golang/snappy from 0.0.5-0.20220116011046-fa5810519dcb to 1.0.0
chore(deps): bump the dependencies group across 1 directory with 39 updates
Scalingo/terraform-provider-osc #279
chore(deps): bump the dependencies group across 1 directory with 47 updates
Scalingo/terraform-provider-osc #277
Bump github.com/golang/snappy from 0.0.4 to 1.0.0
paketo-buildpacks/go-mod-vendor #885
Bump github.com/golang/snappy from 0.0.4 to 1.0.0
paketo-buildpacks/go-build #840
Bump github.com/golang/snappy from 0.0.4 to 1.0.0
paketo-buildpacks/go-dist #1055
build(deps): bump github.com/golang/snappy from 0.0.0-20180518054509-2e65f85255db to 1.0.0
anyproto/any-sync #489
Bump github.com/golang/snappy from 0.0.4 to 1.0.0
paketo-buildpacks/npm-install #912
Bump github.com/golang/snappy from 0.0.4 to 1.0.0
paketo-buildpacks/node-engine #1198
Bump github.com/golang/snappy from 0.0.4 to 1.0.0
paketo-buildpacks/yarn-install #928
chore(deps): bump the dependencies group with 41 updates
Scalingo/terraform-provider-osc #274
chore(deps): bump github.com/golang/snappy from 0.0.4 to 1.0.0 in /documentation/examples/remote_storage
thanos-io/thanos-prometheus #12
build(deps): Bump github.com/golang/snappy from 0.0.4 to 1.0.0
celestiaorg/celestia-core #1965
Bump github.com/golang/snappy from 0.0.4 to 1.0.0 in /receiver/prometheusreceiver
SabreOSS/opentelemetry-collector-contrib #35646
Bump github.com/golang/snappy from 0.0.5-0.20220116011046-fa5810519dcb to 1.0.0
anyproto/any-sync-filenode #149
build(deps): bump github.com/golang/snappy from 0.0.4 to 1.0.0
kazan417/docker-alloy-astra #21
Bump github.com/golang/snappy from 0.0.4 to 1.0.0
paketo-buildpacks/cpython #908
Bump the go-dependencies group across 1 directory with 27 updates
cortexproject/cortex #6758
Bump the go-dependencies group across 1 directory with 29 updates
cortexproject/cortex #6752
chore(deps): bump github.com/golang/snappy from 0.0.5-0.20231225225746-43d5d4cd4e0e to 1.0.0 in /simapp
cosmos/ibc-go #8423
chore(deps): bump github.com/golang/snappy from 0.0.5-0.20231225225746-43d5d4cd4e0e to 1.0.0 in /modules/light-clients/08-wasm
cosmos/ibc-go #8418
Bump github.com/golang/snappy from 0.0.4 to 1.0.0 in /exporter/prometheusremotewriteexporter
SabreOSS/opentelemetry-collector-contrib #34957
Package Details
| Name: | github.com/golang/snappy |
| Ecosystem: | go |
| PURL Type: | golang |
| Package URL: | pkg:golang/github.com/golang/snappy |
| JSON API: | View JSON |
Package Information
Package snappy implements the Snappy compression format. It aims for very high speeds and reasonable compression. There are actually two Snappy formats: block and stream. They are related, but different: trying to decompress block-compressed data as a Snappy stream will fail, and vice versa. The block format is the Decode and Encode functions and the stream format is the Reader and Writer types. The block format, the more common case, is used when the complete size (the number of bytes) of the original data is known upfront, at the time compression starts. The stream format, also known as the framing format, is for when that isn't always true. The canonical, C++ implementation is at https://github.com/google/snappy and it only implements the block format.
| Repository: | https://github.com/golang/snappy |
| Homepage: | https://github.com/golang/snappy |
| Latest Release: |
v1.0.0
over 2 years ago |
| Dependent Repos: | 97,234 |
| Dependent Packages: | 41,684 |
| Ranking: | Top 0.0122% by dependent repos Top 0.0046% by dependent pkgs |