| 1 | module reasonix/desktop |
| 2 | |
| 3 | go 1.26.0 |
| 4 | |
| 5 | toolchain go1.26.6 |
| 6 | |
| 7 | // The desktop service is a nested module so its CGO build never touches the |
| 8 | // CLI's CGO_ENABLED=0 single-static-binary guarantee. The replace lets it import |
| 9 | // the same reasonix/internal/* kernel (the import path stays under reasonix/, so |
| 10 | // the internal rule still permits it). `go mod tidy` here resolves its |
| 11 | // transitive deps; the parent module's go build/test ./... skips this directory. |
| 12 | require reasonix v0.0.0 |
| 13 | |
| 14 | require ( |
| 15 | aead.dev/minisign v0.3.0 |
| 16 | fyne.io/systray v1.12.3-0.20260814134402-f60f01be81c6 |
| 17 | github.com/BurntSushi/toml v1.6.0 |
| 18 | github.com/UserExistsError/conpty v0.1.4 |
| 19 | github.com/creack/pty v1.1.24 |
| 20 | github.com/fsnotify/fsnotify v1.10.1 |
| 21 | github.com/godbus/dbus/v5 v5.2.2 |
| 22 | github.com/google/uuid v1.6.0 |
| 23 | github.com/tc-hib/winres v0.3.1 |
| 24 | golang.org/x/crypto v0.56.0 |
| 25 | golang.org/x/image v0.45.0 |
| 26 | golang.org/x/mod v0.41.0 |
| 27 | golang.org/x/net v0.58.0 |
| 28 | golang.org/x/sync v0.23.0 |
| 29 | golang.org/x/sys v0.48.0 |
| 30 | golang.org/x/text v0.41.0 |
| 31 | modernc.org/sqlite v1.58.0 |
| 32 | ) |
| 33 | |
| 34 | require ( |
| 35 | git.sr.ht/~jackmordaunt/go-toast/v2 v2.0.3 // indirect |
| 36 | github.com/Microsoft/go-winio v0.6.2 // indirect |
| 37 | github.com/aymanbagabas/go-udiff v0.4.1 // indirect |
| 38 | github.com/bmatcuk/doublestar/v4 v4.10.0 // indirect |
| 39 | github.com/clipperhouse/uax29/v2 v2.7.0 // indirect |
| 40 | github.com/danieljoos/wincred v1.2.3 // indirect |
| 41 | github.com/dustin/go-humanize v1.0.1 // indirect |
| 42 | github.com/go-ole/go-ole v1.3.0 // indirect |
| 43 | github.com/gogo/protobuf v1.3.2 // indirect |
| 44 | github.com/google/jsonschema-go v0.4.3 // indirect |
| 45 | github.com/gorilla/websocket v1.5.3 // indirect |
| 46 | github.com/joho/godotenv v1.5.1 // indirect |
| 47 | github.com/kevinburke/ssh_config v1.6.0 // indirect |
| 48 | github.com/klauspost/compress v1.18.4 // indirect |
| 49 | github.com/kr/fs v0.1.0 // indirect |
| 50 | github.com/larksuite/oapi-sdk-go/v3 v3.11.0 // indirect |
| 51 | github.com/mattn/go-isatty v0.0.24 // indirect |
| 52 | github.com/mattn/go-pointer v0.0.1 // indirect |
| 53 | github.com/mattn/go-runewidth v0.0.29 // indirect |
| 54 | github.com/modelcontextprotocol/go-sdk v1.8.0-pre.2 // indirect |
| 55 | github.com/ncruces/go-strftime v1.0.0 // indirect |
| 56 | github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 // indirect |
| 57 | github.com/pkg/sftp v1.13.11 // indirect |
| 58 | github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect |
| 59 | github.com/rivo/uniseg v0.4.7 // indirect |
| 60 | github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 // indirect |
| 61 | github.com/santhosh-tekuri/jsonschema/v6 v6.0.3 // indirect |
| 62 | github.com/segmentio/asm v1.1.3 // indirect |
| 63 | github.com/segmentio/encoding v0.5.4 // indirect |
| 64 | github.com/sky-valley/pi v0.84.20 // indirect |
| 65 | github.com/tree-sitter/go-tree-sitter v0.25.0 // indirect |
| 66 | github.com/tree-sitter/tree-sitter-javascript v0.25.0 // indirect |
| 67 | github.com/tree-sitter/tree-sitter-python v0.25.0 // indirect |
| 68 | github.com/tree-sitter/tree-sitter-rust v0.24.2 // indirect |
| 69 | github.com/tree-sitter/tree-sitter-typescript v0.23.2 // indirect |
| 70 | github.com/yosida95/uritemplate/v3 v3.0.2 // indirect |
| 71 | github.com/yuin/goldmark v1.8.6 // indirect |
| 72 | github.com/zalando/go-keyring v0.2.8 // indirect |
| 73 | go.etcd.io/bbolt v1.5.0 // indirect |
| 74 | golang.org/x/oauth2 v0.37.0 // indirect |
| 75 | golang.org/x/time v0.15.0 // indirect |
| 76 | gopkg.in/yaml.v3 v3.0.1 // indirect |
| 77 | modernc.org/libc v1.75.6 // indirect |
| 78 | modernc.org/mathutil v1.7.1 // indirect |
| 79 | modernc.org/memory v1.12.1 // indirect |
| 80 | mvdan.cc/sh/v3 v3.14.0 // indirect |
| 81 | ) |
| 82 | |
| 83 | replace reasonix => ../ |
| 84 | |
| 85 | // Reasonix keeps one signed Windows tray identity across versioned desktop paths. |
| 86 | replace fyne.io/systray => ./third_party/systray |
| 87 |