hjson-go @ v4.1.0
integrity
- size
- 73.2 KiB
- downloaded
- last checked
- overlays
- go
- detected
- go module github.com/hjson/hjson-go/v4
release notes
Type ambiguity due to quoteless strings can now be avoided by using typed destinations when unmarshalling. A string destination will receive a string even if the quoteless string also was a valid number, boolean or null. Previously an error would have been returned, for example "cannot unmarshal number into Go value of type string".
Tested on Go 1.11 - 1.19
download
unix · zip
curl -fL -o v4.1.0.zip https://ratatoskr.space/pkg/hjson-go/v4.1.0.zip
printf '%s %s\n' '0d4a706eb8f94fae586c16c17e9c5612d31e96cb9ecaab63a4ae6385d44daf1c' 'v4.1.0.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/hjson-go/v4.1.0.zip"
$out = "v4.1.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "0d4a706eb8f94fae586c16c17e9c5612d31e96cb9ecaab63a4ae6385d44daf1c") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v4.1.0.tar.gz https://ratatoskr.space/pkg/hjson-go/v4.1.0.tar.gz
printf '%s %s\n' 'e5cfcf75a2529c9ff4e4dc2721f0f5c4e6d1b63973774e00826b5590eabdcea3' 'v4.1.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/hjson-go/v4.1.0.tar.gz"
$out = "v4.1.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "e5cfcf75a2529c9ff4e4dc2721f0f5c4e6d1b63973774e00826b5590eabdcea3") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v4.1.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/hjson-go/v4.1.0.zip
printf '%s %s\n' '0d4a706eb8f94fae586c16c17e9c5612d31e96cb9ecaab63a4ae6385d44daf1c' 'v4.1.0.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/hjson-go/v4.1.0.zip"
$out = "v4.1.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "0d4a706eb8f94fae586c16c17e9c5612d31e96cb9ecaab63a4ae6385d44daf1c") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v4.1.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/hjson-go/v4.1.0.tar.gz
printf '%s %s\n' 'e5cfcf75a2529c9ff4e4dc2721f0f5c4e6d1b63973774e00826b5590eabdcea3' 'v4.1.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/hjson-go/v4.1.0.tar.gz"
$out = "v4.1.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "e5cfcf75a2529c9ff4e4dc2721f0f5c4e6d1b63973774e00826b5590eabdcea3") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v4.1.0.zip | zip | 76.4 KiB |
blake3-24 d1f6755f60e8df2560cfe69a7e1b33f766388793e24e9165
sha256 0d4a706eb8f94fae586c16c17e9c5612d31e96cb9ecaab63a4ae6385d44daf1c
sha1 ac55e6ffea0c82e53170e33b9e1f1c69b0851dc0
|
| v4.1.0.tar.gz | tar.gz | 37.1 KiB |
blake3-24 9a5acef8c275ffbab1c7cb9a5205b75469ac894987d893b9
sha256 e5cfcf75a2529c9ff4e4dc2721f0f5c4e6d1b63973774e00826b5590eabdcea3
sha1 7055247ab2fde1255a7772f6bdbde61213d89444
|
go module archive
module zip with the module path rewritten to this mirror; fetched by go get through the
GOPROXY route
| artifact | format | size | hashes |
|---|---|---|---|
| v4.1.0.zip | zip | 81.0 KiB |
blake3-24 f363104b1fbfbb257518fb7084c3697b25b6fefa20fc3d81
sha256 45aa0b6e3519c51f9804b06edac3c311f9400f50b49edbd0d549bb5d7862898c
sha1 14267bd0dafe1859b43642a04edc175f361b7b66
|
install
bazel
http_archive(
name = "hjson-go",
urls = ["https://ratatoskr.space/pkg/hjson-go/v4.1.0.tar.gz"],
integrity = "sha256-5c/PdaJSnJ/05NwnIfD1xObRtjlzd04AgmtVkOq9zqM=",
strip_prefix = "hjson-go-v4.1.0",
)
zig
.url = "https://ratatoskr.space/pkg/hjson-go/v4.1.0.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/hjson-go/v4@v4.1.0
install via yggdrasil mesh
bazel
http_archive(
name = "hjson-go",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/hjson-go/v4.1.0.tar.gz"],
integrity = "sha256-5c/PdaJSnJ/05NwnIfD1xObRtjlzd04AgmtVkOq9zqM=",
strip_prefix = "hjson-go-v4.1.0",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/hjson-go/v4.1.0.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/hjson-go/v4@v4.1.0