mirror of
https://github.com/avelino/awesome-go.git
synced 2026-04-11 02:11:43 +08:00
fix: test failing in main due to unordered repos (#6132)
This commit is contained in:
parent
127e377bcf
commit
e4588555e1
@ -1261,10 +1261,10 @@ _Awesome game development libraries._
|
||||
- [engo](https://github.com/EngoEngine/engo) - Engo is an open-source 2D game engine written in Go. It follows the Entity-Component-System paradigm.
|
||||
- [fantasyname](https://github.com/s0rg/fantasyname) - Fantasy names generator.
|
||||
- [g3n](https://github.com/g3n/engine) - Go 3D Game Engine.
|
||||
- [gogpu](https://github.com/gogpu/gogpu) - GPU application framework with windowing, input, and rendering built on WebGPU — reduces 480+ lines of GPU code to ~20, zero CGO (GoGPU ecosystem: [gg](https://github.com/gogpu/gg), [ui](https://github.com/gogpu/ui), [wgpu](https://github.com/gogpu/wgpu), [naga](https://github.com/gogpu/naga)).
|
||||
- [go-astar](https://github.com/beefsack/go-astar) - Go implementation of the A\* path finding algorithm.
|
||||
- [go-sdl2](https://github.com/veandco/go-sdl2) - Go bindings for the [Simple DirectMedia Layer](https://www.libsdl.org/).
|
||||
- [go3d](https://github.com/ungerik/go3d) - Performance oriented 2D/3D math package for Go.
|
||||
- [gogpu](https://github.com/gogpu/gogpu) - GPU application framework with windowing, input, and rendering built on WebGPU — reduces 480+ lines of GPU code to ~20, zero CGO (GoGPU ecosystem: [gg](https://github.com/gogpu/gg), [ui](https://github.com/gogpu/ui), [wgpu](https://github.com/gogpu/wgpu), [naga](https://github.com/gogpu/naga)).
|
||||
- [gonet](https://github.com/xtaci/gonet) - Game server skeleton implemented with golang.
|
||||
- [goworld](https://github.com/xiaonanln/goworld) - Scalable game server engine, featuring space-entity framework and hot-swapping.
|
||||
- [grid](https://github.com/s0rg/grid) - Generic 2D grid with ray-casting, shadow-casting and path finding.
|
||||
@ -1465,7 +1465,6 @@ _Libraries for manipulating images._
|
||||
- [darkroom](https://github.com/gojek/darkroom) - An image proxy with changeable storage backends and image processing engines with focus on speed and resiliency.
|
||||
- [geopattern](https://github.com/pravj/geopattern) - Create beautiful generative image patterns from a string.
|
||||
- [gg](https://github.com/fogleman/gg) - 2D rendering in pure Go.
|
||||
- [gogpu/gg](https://github.com/gogpu/gg) - GPU-accelerated 2D rendering with Canvas-like API, zero CGO (part of [GoGPU](https://github.com/gogpu) pure Go graphics ecosystem).
|
||||
- [gift](https://github.com/disintegration/gift) - Package of image processing filters.
|
||||
- [gltf](https://github.com/qmuntal/gltf) - Efficient and robust glTF 2.0 reader, writer and validator.
|
||||
- [go-cairo](https://github.com/ungerik/go-cairo) - Go binding for the cairo graphics library.
|
||||
@ -1475,6 +1474,7 @@ _Libraries for manipulating images._
|
||||
- [go-webcolors](https://github.com/jyotiska/go-webcolors) - Port of webcolors library from Python to Go.
|
||||
- [go-webp](https://github.com/kolesa-team/go-webp) - Library for encode and decode webp pictures, using libwebp.
|
||||
- [gocv](https://github.com/hybridgroup/gocv) - Go package for computer vision using OpenCV 3.3+.
|
||||
- [gogpu/gg](https://github.com/gogpu/gg) - GPU-accelerated 2D rendering with Canvas-like API, zero CGO (part of [GoGPU](https://github.com/gogpu) pure Go graphics ecosystem).
|
||||
- [goimagehash](https://github.com/corona10/goimagehash) - Go Perceptual image hashing package.
|
||||
- [goimghdr](https://github.com/corona10/goimghdr) - The imghdr module determines the type of image contained in a file for Go.
|
||||
- [govatar](https://github.com/o1egl/govatar) - Library and CMD tool for generating funny avatars.
|
||||
@ -2527,8 +2527,8 @@ _Libraries for testing codebases and generating test data._
|
||||
- [testfixtures](https://github.com/go-testfixtures/testfixtures) - A helper for Rails' like test fixtures to test database applications.
|
||||
- [Testify](https://github.com/stretchr/testify) - Sacred extension to the standard go testing package.
|
||||
- [testsql](https://github.com/zhulongcheng/testsql) - Generate test data from SQL files before testing and clear it after finished.
|
||||
- [tparse](https://github.com/mfridman/tparse) - CLI tool for summarizing go test output. Pipe friendly. Compatible with go test flags.
|
||||
- [testza](https://github.com/MarvinJWendt/testza) - Full-featured test framework with nice colorized output.
|
||||
- [tparse](https://github.com/mfridman/tparse) - CLI tool for summarizing go test output. Pipe friendly. Compatible with go test flags.
|
||||
- [trial](https://github.com/jgroeneveld/trial) - Quick and easy extendable assertions without introducing much boilerplate.
|
||||
- [Tt](https://github.com/vcaesar/tt) - Simple and colorful test tools.
|
||||
- [wstest](https://github.com/posener/wstest) - Websocket client for unit-testing a websocket http.Handler.
|
||||
@ -3144,8 +3144,8 @@ _Full stack web frameworks._
|
||||
- [Bxog](https://github.com/claygod/Bxog) - Simple and fast HTTP router for Go. It works with routes of varying difficulty, length and nesting. And he knows how to create a URL from the received parameters.
|
||||
- [chi](https://github.com/go-chi/chi) - Small, fast and expressive HTTP router built on net/context.
|
||||
- [fasthttprouter](https://github.com/buaazp/fasthttprouter) - High performance router forked from `httprouter`. The first router fit for `fasthttp`.
|
||||
- [fursy](https://github.com/coregx/fursy) - HTTP router with type-safe generic handlers, automatic OpenAPI 3.1 generation from code, and RFC 9457 error responses.
|
||||
- [FastRouter](https://github.com/razonyang/fastrouter) - a fast, flexible HTTP router written in Go.
|
||||
- [fursy](https://github.com/coregx/fursy) - HTTP router with type-safe generic handlers, automatic OpenAPI 3.1 generation from code, and RFC 9457 error responses.
|
||||
- [goblin](https://github.com/bmf-san/goblin) - A golang http router based on trie tree.
|
||||
- [gocraft/web](https://github.com/gocraft/web) - Mux and middleware package in Go.
|
||||
- [Goji](https://github.com/goji/goji) - Goji is a minimalistic and flexible HTTP request multiplexer with support for `net/context`.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user