Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
chyroc committed Dec 29, 2023
1 parent 0d93ea5 commit 1d75e0a
Show file tree
Hide file tree
Showing 4 changed files with 107 additions and 52 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ docker run \
-e ICLOUD_WITH_LIVE_PHOTO="true" \
-v /path/to/your/cookie:/icloud_cookie \
-v /path/to/your/photos:/icloud_photos \
ghcr.io/chyroc/icloud-photo-cli:0.21.0 download
ghcr.io/chyroc/icloud-photo-cli:0.21.1 download
```

### By Go
Expand Down Expand Up @@ -76,7 +76,7 @@ docker run \
-e ICLOUD_FILE=/icloud_photos/filepath \
-v /path/to/your/cookie:/icloud_cookie \
-v /path/to/your/photos:/icloud_photos \
ghcr.io/chyroc/icloud-photo-cli:0.21.0 upload
ghcr.io/chyroc/icloud-photo-cli:0.21.1 upload
```
### By Go
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.7"

services:
app:
image: ghcr.io/chyroc/icloud-photo-cli:0.21.0
image: ghcr.io/chyroc/icloud-photo-cli:0.21.1
environment:
- ICLOUD_USERNAME=your_icloud_username
- ICLOUD_PASSWORD=your_icloud_password
Expand Down
37 changes: 20 additions & 17 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,33 +6,36 @@ require (
github.com/chyroc/gorequests v0.33.0
github.com/dgraph-io/badger/v3 v3.2103.5
github.com/satori/go.uuid v1.2.0
github.com/urfave/cli/v2 v2.24.3
github.com/urfave/cli/v2 v2.27.0
)

require (
github.com/OneOfOne/xxhash v1.2.8 // indirect
github.com/cespare/xxhash v1.1.0 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/chyroc/persistent-cookiejar v0.1.0 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/dgraph-io/ristretto v0.1.1 // indirect
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/frankban/quicktest v1.14.6 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/golang/glog v1.2.0 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/google/flatbuffers v1.12.1 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/klauspost/compress v1.15.15 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/google/flatbuffers v23.5.26+incompatible // indirect
github.com/klauspost/compress v1.17.4 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/rogpeppe/go-internal v1.12.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/stretchr/testify v1.8.0 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
go.opencensus.io v0.22.5 // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/sys v0.5.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
github.com/stretchr/testify v1.8.4 // indirect
github.com/xrash/smetrics v0.0.0-20231213231151-1d8dd44e695e // indirect
go.opencensus.io v0.24.0 // indirect
golang.org/x/net v0.19.0 // indirect
golang.org/x/sys v0.15.0 // indirect
google.golang.org/protobuf v1.32.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
)
Loading

0 comments on commit 1d75e0a

Please sign in to comment.