-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from icexin/pkg
eggos as a pkg
- Loading branch information
Showing
9 changed files
with
1,289 additions
and
286 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 |
---|---|---|
|
@@ -3,4 +3,7 @@ | |
"GOOS": "linux", | ||
"GOARCH": "amd64", | ||
}, | ||
"files.associations": { | ||
"multiboot.h": "c" | ||
}, | ||
} |
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,31 @@ | ||
module github.com/icexin/eggos/app | ||
|
||
go 1.16 | ||
|
||
require ( | ||
github.com/aarzilli/nucular v0.0.0-20210408133902-d3dd7b05a80a | ||
github.com/fogleman/fauxgl v0.0.0-20200818143847-27cddc103802 | ||
github.com/fogleman/gg v1.3.0 | ||
github.com/fogleman/nes v0.0.0-20210605215016-0aace4b1814a | ||
github.com/gin-gonic/gin v1.7.2 | ||
github.com/gliderlabs/ssh v0.3.3 | ||
github.com/icexin/eggos v0.0.0-00010101000000-000000000000 | ||
github.com/icexin/nk v0.1.0 | ||
github.com/jakecoffman/cp v1.1.0 | ||
github.com/klauspost/cpuid v1.3.1 | ||
github.com/mattn/go-shellwords v1.0.12 | ||
github.com/peterh/liner v1.2.1 | ||
github.com/robertkrimen/otto v0.0.0-20210614181706-373ff5438452 | ||
github.com/spf13/afero v1.4.0 | ||
golang.org/x/exp v0.0.0-20210729172720-737cce5152fc | ||
golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d | ||
golang.org/x/mobile v0.0.0-20210716004757-34ab1303b554 | ||
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c | ||
gopkg.in/sourcemap.v1 v1.0.5 // indirect | ||
) | ||
|
||
replace ( | ||
github.com/aarzilli/nucular => github.com/icexin/nucular v0.0.0-20210713192454-c3f236ca56cb | ||
github.com/fogleman/nes => github.com/icexin/nes v0.0.0-20200906065456-8ff789fac016 | ||
github.com/icexin/eggos => ../ | ||
) |
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
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
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,36 +1,13 @@ | ||
module github.com/icexin/eggos | ||
|
||
go 1.13 | ||
go 1.16 | ||
|
||
require ( | ||
github.com/aarzilli/nucular v0.0.0-00010101000000-000000000000 | ||
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect | ||
github.com/fogleman/fauxgl v0.0.0-20200818143847-27cddc103802 | ||
github.com/fogleman/gg v1.3.0 | ||
github.com/fogleman/nes v0.0.0-20200820131603-8c4b9cf54c35 | ||
github.com/gin-gonic/gin v1.7.2 | ||
github.com/gliderlabs/ssh v0.3.0 | ||
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect | ||
github.com/hirochachacha/go-smb2 v1.0.3 | ||
github.com/icexin/nk v0.1.0 | ||
github.com/jakecoffman/cp v1.0.0 | ||
github.com/klauspost/cpuid v1.3.1 | ||
github.com/magefile/mage v1.11.0 | ||
github.com/mattn/go-shellwords v1.0.10 | ||
github.com/peterh/liner v1.2.0 | ||
github.com/prometheus/client_golang v1.7.1 | ||
github.com/rakyll/statik v0.1.7 | ||
github.com/robertkrimen/otto v0.0.0-20191219234010-c382bd3c16ff | ||
github.com/spf13/afero v1.4.0 | ||
golang.org/x/exp v0.0.0-20210712160552-8235cf48b5f6 | ||
golang.org/x/image v0.0.0-20200801110659-972c09e46d76 | ||
golang.org/x/mobile v0.0.0-20201217150744-e6ae53a27f4f | ||
golang.org/x/sys v0.0.0-20210314195730-07df6a141424 | ||
gopkg.in/sourcemap.v1 v1.0.5 // indirect | ||
gvisor.dev/gvisor v0.0.0-20210716193733-566c23a60eea | ||
) | ||
|
||
replace ( | ||
github.com/aarzilli/nucular => github.com/icexin/nucular v0.0.0-20210713192454-c3f236ca56cb | ||
github.com/fogleman/nes v0.0.0-20200820131603-8c4b9cf54c35 => github.com/icexin/nes v0.0.0-20200906065456-8ff789fac016 | ||
) |
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