返回 DeepSeek-Reasonix
go.mod
根目录 / desktop / go.mod
1 module reasonix/desktop
2
3 go 1.25.0
4
5 toolchain go1.26.5
6
7 // The desktop shell is a nested module so its CGO/WebKit 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 Wails + 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.2
17 github.com/UserExistsError/conpty v0.1.4
18 github.com/creack/pty v1.1.24
19 github.com/go-ole/go-ole v1.3.0
20 github.com/godbus/dbus/v5 v5.2.2
21 github.com/tc-hib/winres v0.3.1
22 github.com/wailsapp/go-webview2 v1.0.23
23 github.com/wailsapp/wails/v2 v2.12.0
24 golang.org/x/image v0.43.0
25 golang.org/x/mod v0.37.0
26 golang.org/x/sync v0.22.0
27 golang.org/x/sys v0.46.0
28 golang.org/x/text v0.39.0
29 )
30
31 require (
32 git.sr.ht/~jackmordaunt/go-toast/v2 v2.0.3 // indirect
33 github.com/BurntSushi/toml v1.6.0 // indirect
34 github.com/aymanbagabas/go-udiff v0.4.1 // indirect
35 github.com/bep/debounce v1.2.1 // indirect
36 github.com/bmatcuk/doublestar/v4 v4.10.0 // indirect
37 github.com/clipperhouse/uax29/v2 v2.7.0 // indirect
38 github.com/danieljoos/wincred v1.2.3 // indirect
39 github.com/gogo/protobuf v1.3.2 // indirect
40 github.com/google/uuid v1.6.0 // indirect
41 github.com/gorilla/websocket v1.5.3 // indirect
42 github.com/jchv/go-winloader v0.0.0-20250406163304-c1995be93bd1 // indirect
43 github.com/joho/godotenv v1.5.1 // indirect
44 github.com/kevinburke/ssh_config v1.6.0 // indirect
45 github.com/kr/fs v0.1.0 // indirect
46 github.com/labstack/echo/v4 v4.15.2 // indirect
47 github.com/labstack/gommon v0.5.0 // indirect
48 github.com/larksuite/oapi-sdk-go/v3 v3.9.5 // indirect
49 github.com/leaanthony/go-ansi-parser v1.6.1 // indirect
50 github.com/leaanthony/gosod v1.0.4 // indirect
51 github.com/leaanthony/slicer v1.6.0 // indirect
52 github.com/leaanthony/u v1.1.1 // indirect
53 github.com/mattn/go-colorable v0.1.15 // indirect
54 github.com/mattn/go-isatty v0.0.22 // indirect
55 github.com/mattn/go-pointer v0.0.1 // indirect
56 github.com/mattn/go-runewidth v0.0.24 // indirect
57 github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 // indirect
58 github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
59 github.com/pkg/errors v0.9.1 // indirect
60 github.com/pkg/sftp v1.13.10 // indirect
61 github.com/rivo/uniseg v0.4.7 // indirect
62 github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 // indirect
63 github.com/samber/lo v1.53.0 // indirect
64 github.com/santhosh-tekuri/jsonschema/v6 v6.0.2 // indirect
65 github.com/tkrajina/go-reflector v0.5.8 // indirect
66 github.com/tree-sitter/go-tree-sitter v0.25.0 // indirect
67 github.com/tree-sitter/tree-sitter-javascript v0.25.0 // indirect
68 github.com/tree-sitter/tree-sitter-python v0.25.0 // indirect
69 github.com/tree-sitter/tree-sitter-rust v0.24.2 // indirect
70 github.com/tree-sitter/tree-sitter-typescript v0.23.2 // indirect
71 github.com/valyala/bytebufferpool v1.0.0 // indirect
72 github.com/valyala/fasttemplate v1.2.2 // indirect
73 github.com/wailsapp/mimetype v1.4.1 // indirect
74 github.com/yuin/goldmark v1.8.2 // indirect
75 github.com/zalando/go-keyring v0.2.8 // indirect
76 golang.org/x/crypto v0.53.0 // indirect
77 golang.org/x/net v0.56.0 // indirect
78 gopkg.in/yaml.v3 v3.0.1 // indirect
79 mvdan.cc/sh/v3 v3.13.1 // indirect
80 )
81
82 replace reasonix => ../
83
84 // Reasonix patches WebView2 monitor-scale detection for mixed-DPI restore
85 // (#5862) and isolates its embedded/loopback UI from stale system proxies.
86 replace github.com/wailsapp/go-webview2 => ./third_party/go-webview2
87
87 lines Plain Text