-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
baf22c0
commit cfb3397
Showing
3 changed files
with
25 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
version: 2.1 | ||
|
||
orbs: | ||
go: circleci/go@1.8.0 | ||
|
||
jobs: | ||
build: | ||
docker: | ||
- image: cimg/go:1.21 | ||
resource_class: large | ||
steps: | ||
- checkout | ||
- go/mod-download-cached | ||
- run: | ||
command: go install ./... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
module github.com/lizthgrey/tor-fetcher | ||
|
||
go 1.20 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/cretz/bine v0.2.0 | ||
github.com/ipsn/go-libtor v1.0.380 | ||
golang.org/x/crypto v0.11.0 | ||
golang.org/x/crypto v0.12.0 | ||
) | ||
|
||
require ( | ||
golang.org/x/net v0.12.0 // indirect | ||
golang.org/x/sys v0.10.0 // indirect | ||
golang.org/x/net v0.14.0 // indirect | ||
golang.org/x/sys v0.11.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters