forked from grailbio/go-netdicom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
44 lines (24 loc) · 1.13 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
module github.com/apaladiychuk/go-netdicom
require (
github.com/apaladiychuk/go-dicom v0.0.3
github.com/stretchr/testify v1.2.2
)
replace github.com/ceph/go-ceph => ../../ceph/go-ceph
replace github.com/dghubble/oauth1 => ../../dghubble/oauth1
replace github.com/grailbio/base => ../base
replace github.com/grailbio/bigmachine => ../bigmachine
replace github.com/grailbio/bigslice => ../bigslice
replace github.com/grailbio/bio => ../bio
//replace github.com/apaladiychuk/go-dicom => ../go-dicom
replace github.com/apaladiychuk/go-netdicom => ../go-netdicom
replace github.com/grailbio/hts => ../hts
replace github.com/grailbio/ml => ../ml
replace github.com/grailbio/reflow => ../reflow
replace github.com/grailbio/testutil => ../testutil
replace github.com/grailbio/v23/factories/grail => ../v23/factories/grail
replace github.com/mijia/modelq => ../../mijia/modelq
replace github.com/unidoc/unidoc => ../../unidoc/unidoc
replace github.com/youtube/vitess => ../../youtube/vitess
replace v.io/x/ref/lib/flags/sitedefaults => ../../../v.io/x/ref/lib/flags/sitedefaults
replace github.com/golang/lint => ../../golang/lint
go 1.13