
2. 支持名片、视频号、QQ音乐、小程序、定位等消息的显示 3. 支持直播、游戏消息、语音通话、视频通话等消息的显示 4. 解密前判断对数据库是否有读权限 5. system消息html格式转文本
72 lines
2.9 KiB
Modula-2
72 lines
2.9 KiB
Modula-2
module wechatDataBackup
|
|
|
|
go 1.21.0
|
|
|
|
require (
|
|
github.com/beevik/etree v1.3.0
|
|
github.com/git-jiadong/go-lame v0.0.0-20241215065806-397455857191
|
|
github.com/git-jiadong/go-silk v0.0.0-20241215085148-b8734e30c24b
|
|
github.com/mattn/go-sqlite3 v1.14.22
|
|
github.com/pierrec/lz4 v2.6.1+incompatible
|
|
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8
|
|
github.com/shirou/gopsutil v2.21.11+incompatible
|
|
github.com/shirou/gopsutil/v3 v3.24.2
|
|
github.com/spf13/viper v1.18.2
|
|
github.com/wailsapp/wails/v2 v2.9.1
|
|
golang.org/x/net v0.25.0
|
|
golang.org/x/sys v0.20.0
|
|
google.golang.org/protobuf v1.31.0
|
|
gopkg.in/natefinch/lumberjack.v2 v2.2.1
|
|
)
|
|
|
|
require (
|
|
github.com/bep/debounce v1.2.1 // indirect
|
|
github.com/fsnotify/fsnotify v1.7.0 // indirect
|
|
github.com/go-ole/go-ole v1.2.6 // indirect
|
|
github.com/godbus/dbus/v5 v5.1.0 // indirect
|
|
github.com/google/uuid v1.4.0 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/jchv/go-winloader v0.0.0-20210711035445-715c2860da7e // indirect
|
|
github.com/labstack/echo/v4 v4.10.2 // indirect
|
|
github.com/labstack/gommon v0.4.0 // indirect
|
|
github.com/leaanthony/go-ansi-parser v1.6.0 // indirect
|
|
github.com/leaanthony/gosod v1.0.3 // indirect
|
|
github.com/leaanthony/slicer v1.6.0 // indirect
|
|
github.com/leaanthony/u v1.1.0 // indirect
|
|
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
|
|
github.com/magiconair/properties v1.8.7 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.19 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
|
|
github.com/rivo/uniseg v0.4.4 // indirect
|
|
github.com/sagikazarmark/locafero v0.4.0 // indirect
|
|
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
|
|
github.com/samber/lo v1.38.1 // indirect
|
|
github.com/shoenig/go-m1cpu v0.1.6 // indirect
|
|
github.com/sourcegraph/conc v0.3.0 // indirect
|
|
github.com/spf13/afero v1.11.0 // indirect
|
|
github.com/spf13/cast v1.6.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/subosito/gotenv v1.6.0 // indirect
|
|
github.com/tklauser/go-sysconf v0.3.13 // indirect
|
|
github.com/tklauser/numcpus v0.7.0 // indirect
|
|
github.com/tkrajina/go-reflector v0.5.6 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasttemplate v1.2.2 // indirect
|
|
github.com/wailsapp/go-webview2 v1.0.10 // indirect
|
|
github.com/wailsapp/mimetype v1.4.1 // indirect
|
|
github.com/yusufpapurcu/wmi v1.2.4 // indirect
|
|
go.uber.org/atomic v1.9.0 // indirect
|
|
go.uber.org/multierr v1.9.0 // indirect
|
|
golang.org/x/crypto v0.23.0 // indirect
|
|
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
|
|
golang.org/x/text v0.15.0 // indirect
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|
|
|
|
// replace github.com/wailsapp/wails/v2 v2.8.0 => C:\Users\HAL\go\pkg\mod
|