Skip to content

Commit e664a77

Browse files
authored
Merge pull request #30 from neo7337/lib-upgrades
Lib upgrades
2 parents 9d75ad2 + 17632cd commit e664a77

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# go-struct-validator
22

3+
![](/public/images/banner.gif)
4+
35
![Build Status](https://github.com/neo7337/go-struct-validator/actions/workflows/ci.yml/badge.svg)
46

57
Neo's Go Struct Validator is a simple validator built on the core of OAS Specification. The validator is heavily

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module github.com/neo7337/go-struct-validator
22

3-
go 1.19
3+
go 1.22.1
44

5-
require go.nandlabs.io/l3 v0.0.1
5+
toolchain go1.22.4
66

7-
require go.nandlabs.io/commons v0.0.1 // indirect
7+
require oss.nandlabs.io/golly v1.0.0

go.sum

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
go.nandlabs.io/commons v0.0.1 h1:lsbYNX7pD2p4y1w6LAp8og+1FN1BNe9PJu0Zewh1guo=
2-
go.nandlabs.io/commons v0.0.1/go.mod h1:0Kw+BDvFH+9gNscbr6nv4nvWUt3/JmAlSMxMNkHLLdk=
3-
go.nandlabs.io/l3 v0.0.1 h1:awmFMdP4PqkaRTImsEy0SAIb3MPcqG0dzvHM9i7tX/M=
4-
go.nandlabs.io/l3 v0.0.1/go.mod h1:N/29Imt7tv7TB9UJqHDxwrfmUDDGKuMMo8hQzTRGUQA=
1+
oss.nandlabs.io/golly v1.0.0 h1:OmoF7TD1ucquwIXWcEb4m1oSlhrVz4P0tWBex9QbEiQ=
2+
oss.nandlabs.io/golly v1.0.0/go.mod h1:chm4a9slqgxDzd7pHo61pCue8dRPYHuAp70pAdWE+7Q=

public/images/banner.gif

1.21 MB
Loading

validate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package validator
33
import (
44
"reflect"
55

6-
"go.nandlabs.io/l3"
6+
"oss.nandlabs.io/golly/l3"
77
)
88

99
var logger = l3.Get()

0 commit comments

Comments
 (0)