Skip to content

Commit 0edc412

Browse files
committed
feat!: v3.0.0 rewrite with Vanilla OS SDK, go-slipstream, go-module-router and go-warp
1 parent f049a97 commit 0edc412

40 files changed

+1689
-1974
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@ __pycache__
44
env
55
poetry.lock
66
node_modules/
7+
eratosthenes_data/
8+
eratosthenes

config.py

Lines changed: 0 additions & 11 deletions
This file was deleted.

conn.py

Lines changed: 0 additions & 30 deletions
This file was deleted.

eratosthenes.py

Lines changed: 0 additions & 178 deletions
This file was deleted.

go.mod

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
module github.com/vanilla-os/eratosthenes
2+
3+
go 1.24.12
4+
5+
require (
6+
github.com/mirkobrombin/go-module-router/v2 v2.0.3
7+
github.com/mirkobrombin/go-slipstream v0.0.0-20260116153833-040538be0fcc
8+
github.com/mirkobrombin/go-warp v1.0.1-0.20260115145704-11be60ab693f
9+
github.com/ulikunitz/xz v0.5.15
10+
github.com/vanilla-os/sdk v0.0.0
11+
)
12+
13+
require (
14+
github.com/atotto/clipboard v0.1.4 // indirect
15+
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
16+
github.com/beorn7/perks v1.0.1 // indirect
17+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
18+
github.com/charmbracelet/bubbles v0.21.0 // indirect
19+
github.com/charmbracelet/bubbletea v1.3.10 // indirect
20+
github.com/charmbracelet/colorprofile v0.2.3-0.20250311203215-f60798e515dc // indirect
21+
github.com/charmbracelet/harmonica v0.2.0 // indirect
22+
github.com/charmbracelet/lipgloss v1.1.0 // indirect
23+
github.com/charmbracelet/x/ansi v0.10.1 // indirect
24+
github.com/charmbracelet/x/cellbuf v0.0.13-0.20250311204145-2c3ea96c31dd // indirect
25+
github.com/charmbracelet/x/term v0.2.1 // indirect
26+
github.com/dgraph-io/ristretto v0.1.1 // indirect
27+
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
28+
github.com/dustin/go-humanize v1.0.1 // indirect
29+
github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect
30+
github.com/go-logr/logr v1.4.3 // indirect
31+
github.com/go-logr/stdr v1.2.2 // indirect
32+
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
33+
github.com/golang/protobuf v1.5.3 // indirect
34+
github.com/klauspost/compress v1.18.1 // indirect
35+
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
36+
github.com/mattn/go-isatty v0.0.20 // indirect
37+
github.com/mattn/go-localereader v0.0.1 // indirect
38+
github.com/mattn/go-runewidth v0.0.16 // indirect
39+
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
40+
github.com/mirkobrombin/go-cli-builder/v2 v2.0.5 // indirect
41+
github.com/mirkobrombin/go-foundation v0.2.1 // indirect
42+
github.com/mirkobrombin/go-signal/v2 v2.0.0 // indirect
43+
github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect
44+
github.com/muesli/cancelreader v0.2.2 // indirect
45+
github.com/muesli/termenv v0.16.0 // indirect
46+
github.com/phuslu/log v1.0.88 // indirect
47+
github.com/pkg/errors v0.9.1 // indirect
48+
github.com/prometheus/client_golang v1.17.0 // indirect
49+
github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect
50+
github.com/prometheus/common v0.44.0 // indirect
51+
github.com/prometheus/procfs v0.11.1 // indirect
52+
github.com/redis/go-redis/v9 v9.11.0 // indirect
53+
github.com/rivo/uniseg v0.4.7 // indirect
54+
github.com/robfig/cron/v3 v3.0.1 // indirect
55+
github.com/sahilm/fuzzy v0.1.1 // indirect
56+
github.com/vorlif/spreak v0.6.0 // indirect
57+
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
58+
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
59+
go.opentelemetry.io/otel v1.37.0 // indirect
60+
go.opentelemetry.io/otel/metric v1.37.0 // indirect
61+
go.opentelemetry.io/otel/trace v1.37.0 // indirect
62+
go.uber.org/multierr v1.10.0 // indirect
63+
go.uber.org/zap v1.27.1 // indirect
64+
golang.org/x/sys v0.36.0 // indirect
65+
golang.org/x/text v0.28.0 // indirect
66+
google.golang.org/protobuf v1.36.7 // indirect
67+
)
68+
69+
replace (
70+
github.com/mirkobrombin/go-module-router/v2 => ../go-tools/go-module-router
71+
github.com/mirkobrombin/go-slipstream => ../go-tools/go-slipstream
72+
github.com/mirkobrombin/go-warp => ../go-tools/go-warp
73+
github.com/vanilla-os/sdk => ../sdk
74+
)

0 commit comments

Comments
 (0)