|
1 | 1 | module examples
|
2 | 2 |
|
3 |
| -go 1.16 |
| 3 | +go 1.21 |
4 | 4 |
|
5 | 5 | require (
|
6 |
| - github.com/golang/protobuf v1.5.2 |
| 6 | + github.com/golang/protobuf v1.5.3 |
7 | 7 | github.com/gorilla/handlers v1.5.1
|
8 |
| - github.com/netsec-ethz/scion-apps v0.5.1-0.20220504120040-79211109ed3f |
9 |
| - github.com/quic-go/quic-go v0.34.0 |
10 |
| - github.com/scionproto/scion v0.6.1-0.20220202161514-5883c725f748 |
11 |
| - google.golang.org/grpc v1.40.0 |
12 |
| - google.golang.org/protobuf v1.28.0 |
13 |
| - inet.af/netaddr v0.0.0-20230525184311-b8eac61e914a |
| 8 | + github.com/netsec-ethz/scion-apps v0.5.0 |
| 9 | + github.com/quic-go/quic-go v0.38.1 |
| 10 | + google.golang.org/grpc v1.57.2 |
14 | 11 | )
|
15 | 12 |
|
16 |
| -replace github.com/scionproto/scion => github.com/netsec-ethz/scion v0.6.1-0.20220929101513-2408583f35d1 |
| 13 | +require ( |
| 14 | + github.com/antlr/antlr4 v0.0.0-20181218183524-be58ebffde8e // indirect |
| 15 | + github.com/beorn7/perks v1.0.1 // indirect |
| 16 | + github.com/britram/borat v0.0.0-20181011130314-f891bcfcfb9b // indirect |
| 17 | + github.com/cespare/xxhash/v2 v2.2.0 // indirect |
| 18 | + github.com/dchest/cmac v1.0.0 // indirect |
| 19 | + github.com/dustin/go-humanize v1.0.1 // indirect |
| 20 | + github.com/felixge/httpsnoop v1.0.1 // indirect |
| 21 | + github.com/go-stack/stack v1.8.0 // indirect |
| 22 | + github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect |
| 23 | + github.com/golang/mock v1.6.0 // indirect |
| 24 | + github.com/google/gopacket v1.1.19 // indirect |
| 25 | + github.com/google/pprof v0.0.0-20221118152302-e6195bd50e26 // indirect |
| 26 | + github.com/google/uuid v1.3.0 // indirect |
| 27 | + github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect |
| 28 | + github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect |
| 29 | + github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645 // indirect |
| 30 | + github.com/inconshreveable/log15 v0.0.0-20180818164646-67afb5ed74ec // indirect |
| 31 | + github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect |
| 32 | + github.com/mattn/go-colorable v0.1.13 // indirect |
| 33 | + github.com/mattn/go-isatty v0.0.17 // indirect |
| 34 | + github.com/mattn/go-sqlite3 v1.14.17 // indirect |
| 35 | + github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect |
| 36 | + github.com/netsec-ethz/rains v0.5.1-0.20231016120129-1e8d70642e60 // indirect |
| 37 | + github.com/onsi/ginkgo/v2 v2.9.5 // indirect |
| 38 | + github.com/opentracing/opentracing-go v1.2.0 // indirect |
| 39 | + github.com/pelletier/go-toml v1.9.5 // indirect |
| 40 | + github.com/prometheus/client_golang v1.14.0 // indirect |
| 41 | + github.com/prometheus/client_model v0.3.0 // indirect |
| 42 | + github.com/prometheus/common v0.37.0 // indirect |
| 43 | + github.com/prometheus/procfs v0.8.0 // indirect |
| 44 | + github.com/quic-go/qtls-go1-20 v0.3.3 // indirect |
| 45 | + github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect |
| 46 | + github.com/scionproto/scion v0.9.1 // indirect |
| 47 | + github.com/uber/jaeger-client-go v2.30.0+incompatible // indirect |
| 48 | + github.com/uber/jaeger-lib v2.0.0+incompatible // indirect |
| 49 | + go.uber.org/atomic v1.9.0 // indirect |
| 50 | + go.uber.org/multierr v1.8.0 // indirect |
| 51 | + go.uber.org/zap v1.24.0 // indirect |
| 52 | + golang.org/x/crypto v0.9.0 // indirect |
| 53 | + golang.org/x/exp v0.0.0-20221205204356-47842c84f3db // indirect |
| 54 | + golang.org/x/mod v0.10.0 // indirect |
| 55 | + golang.org/x/net v0.10.0 // indirect |
| 56 | + golang.org/x/sys v0.8.0 // indirect |
| 57 | + golang.org/x/text v0.9.0 // indirect |
| 58 | + golang.org/x/tools v0.9.1 // indirect |
| 59 | + google.golang.org/genproto/googleapis/rpc v0.0.0-20230815205213-6bfd019c3878 // indirect |
| 60 | + google.golang.org/protobuf v1.31.0 // indirect |
| 61 | + gopkg.in/yaml.v2 v2.4.0 // indirect |
| 62 | + lukechampine.com/uint128 v1.2.0 // indirect |
| 63 | + modernc.org/cc/v3 v3.40.0 // indirect |
| 64 | + modernc.org/ccgo/v3 v3.16.13 // indirect |
| 65 | + modernc.org/libc v1.22.5 // indirect |
| 66 | + modernc.org/mathutil v1.5.0 // indirect |
| 67 | + modernc.org/memory v1.5.0 // indirect |
| 68 | + modernc.org/opt v0.1.3 // indirect |
| 69 | + modernc.org/sqlite v1.24.0 // indirect |
| 70 | + modernc.org/strutil v1.1.3 // indirect |
| 71 | + modernc.org/token v1.0.1 // indirect |
| 72 | +) |
17 | 73 |
|
18 | 74 | replace github.com/netsec-ethz/scion-apps => ../
|
0 commit comments