forked from simpleiot/simpleiot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
102 lines (99 loc) · 4.43 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
module github.com/simpleiot/simpleiot
require (
github.com/Wifx/gonetworkmanager/v2 v2.1.0
github.com/adrianmo/go-nmea v1.1.1-0.20190321164421-7572fbeb90aa
github.com/beevik/ntp v0.3.0
github.com/blang/semver/v4 v4.0.0
github.com/cavaliercoder/grab v2.0.0+incompatible
github.com/cosmtrek/air v1.40.4
github.com/dim13/cobs v0.1.0
github.com/donovanhide/eventsource v0.0.0-20171031113327-3ed64d21fb0b
github.com/fsnotify/fsnotify v1.6.0
github.com/go-audio/wav v1.0.0
github.com/go-ocf/go-coap v0.0.0-20200224085725-3e22e8f506ea
github.com/goccy/go-yaml v1.11.2
github.com/godbus/dbus/v5 v5.1.0
github.com/golang-jwt/jwt/v4 v4.0.0
github.com/golang/protobuf v1.5.2
github.com/google/go-cmp v0.5.9
github.com/google/uuid v1.3.0
github.com/influxdata/influxdb-client-go/v2 v2.10.0
github.com/jacobsa/go-serial v0.0.0-20180131005756-15cf729a72d4
github.com/kevinburke/twilio-go v0.0.0-20200810163702-320748330fac
github.com/kjx98/crc16 v0.0.0-20190915014410-d407ba22e1b5
github.com/koding/websocketproxy v0.0.0-20181220232114-7ed82d81a28c
github.com/nats-io/nats-server/v2 v2.10.4
github.com/nats-io/nats.go v1.31.0
github.com/oklog/run v1.1.0
github.com/pkg/errors v0.9.1
github.com/shirou/gopsutil/v3 v3.23.7
github.com/simpleiot/canparse v0.0.0-20221208203709-740f6c246768
github.com/simpleiot/mdns v0.0.1
go.bug.st/serial v1.3.5
go.einride.tech/can v0.5.1
golang.org/x/exp v0.0.0-20230905200255-921286631fa9
golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5
google.golang.org/protobuf v1.27.1
modernc.org/sqlite v1.18.0
)
require (
github.com/creack/goselect v0.1.2 // indirect
github.com/creack/pty v1.1.11 // indirect
github.com/deepmap/oapi-codegen v1.8.2 // indirect
github.com/fatih/color v1.15.0 // indirect
github.com/go-audio/audio v1.0.0 // indirect
github.com/go-audio/riff v1.0.0 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/go-stack/stack v1.8.0 // indirect
github.com/golang/mock v1.6.0 // indirect
github.com/gorilla/websocket v1.4.1 // indirect
github.com/imdario/mergo v0.3.12 // indirect
github.com/inconshreveable/log15 v0.0.0-20200109203555-b30bc20e4fd1 // indirect
github.com/influxdata/line-protocol v0.0.0-20210311194329-9aa0e372d097 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/kevinburke/go-types v0.0.0-20200309064045-f2d4aea18a7a // indirect
github.com/kevinburke/go.uuid v1.2.0 // indirect
github.com/kevinburke/rest v0.0.0-20200429221318-0d2892b400f8 // indirect
github.com/klauspost/compress v1.17.2 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/miekg/dns v1.1.55 // indirect
github.com/minio/highwayhash v1.0.2 // indirect
github.com/nats-io/jwt/v2 v2.5.2 // indirect
github.com/nats-io/nkeys v0.4.6 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/pelletier/go-toml v1.8.1 // indirect
github.com/pion/dtls/v2 v2.0.0-rc.5 // indirect
github.com/pion/logging v0.2.2 // indirect
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
github.com/shoenig/go-m1cpu v0.1.6 // indirect
github.com/tklauser/go-sysconf v0.3.11 // indirect
github.com/tklauser/numcpus v0.6.0 // indirect
github.com/ttacon/builder v0.0.0-20170518171403-c099f663e1c2 // indirect
github.com/ttacon/libphonenumber v1.1.0 // indirect
github.com/yusufpapurcu/wmi v1.2.3 // indirect
golang.org/x/crypto v0.14.0 // indirect
golang.org/x/mod v0.12.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sync v0.3.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/time v0.3.0 // indirect
golang.org/x/tools v0.13.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
lukechampine.com/uint128 v1.1.1 // indirect
modernc.org/cc/v3 v3.36.0 // indirect
modernc.org/ccgo/v3 v3.16.6 // indirect
modernc.org/libc v1.16.7 // indirect
modernc.org/mathutil v1.4.1 // indirect
modernc.org/memory v1.1.1 // indirect
modernc.org/opt v0.1.1 // indirect
modernc.org/strutil v1.1.1 // indirect
modernc.org/token v1.0.0 // indirect
)
go 1.20