Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 40 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# ---- Custom Project specific ----
/certs/*
*.log
*.xcframework
Expand All @@ -7,4 +8,42 @@
/tests/fakefile_64MB.txt
/tests/*.py-old
/bin/*
/everlast_license_updater.ps1
/everlast_license_updater.ps1

# ---- Go ----
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# ---- Python ----
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# ---- OS and IDEs ----
.DS_Store
.AppleDouble
.LSOverride

# IDEs
.idea/
.vscode/
*.swp
*.swo
8 changes: 4 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module github.com/example/qtls

go 1.22.0
go 1.24.0

require (
github.com/cloudflare/circl v1.6.1
golang.org/x/crypto v0.29.0
github.com/cloudflare/circl v1.6.3
golang.org/x/crypto v0.35.0
gopkg.in/yaml.v3 v3.0.1
)

require golang.org/x/sys v0.27.0 // indirect
require golang.org/x/sys v0.34.0 // indirect