-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
26 lines (22 loc) · 791 Bytes
/
go.mod
File metadata and controls
26 lines (22 loc) · 791 Bytes
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
module go-alpaca-streaming
go 1.21
require (
github.com/gorilla/websocket v1.5.0
github.com/joho/godotenv v1.5.1
github.com/xitongsys/parquet-go-source v0.0.0-20230919034749-0b16411e6349
)
require (
github.com/getsentry/sentry-go v0.25.0 // indirect
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/text v0.9.0 // indirect
)
require (
github.com/apache/arrow/go/arrow v0.0.0-20211112161151-bc219186db40 // indirect
github.com/apache/thrift v0.19.0 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/klauspost/compress v1.17.0 // indirect
github.com/pierrec/lz4/v4 v4.1.18 // indirect
github.com/xitongsys/parquet-go v1.6.2
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
)