cuelang.org/go@v0.10.1/internal/mod/modpkgload/testdata/multidir.txtar (about) 1 -- test0/initial-requirements -- 2 main.test@v0 3 example.com@v0.0.1 4 -- test0/root-packages -- 5 main.test@v0:main 6 -- test0/default-major-versions -- 7 -- test0/want -- 8 main.test@v0:main 9 flags: inAll,isRoot,fromRoot,importsLoaded 10 mod: main.test@v0 11 location: . 12 imports: 13 example.com/blah@v0 14 example.com/blah@v0 15 flags: inAll,isRoot,fromRoot,importsLoaded 16 mod: example.com@v0.0.1 17 location: _registry/example.com_v0.0.1/blah 18 imports: 19 foo.com/bar/hello/goodbye@v0 20 foo.com/bar/hello/goodbye@v0 21 flags: inAll,isRoot,fromRoot 22 error: cannot find module providing package foo.com/bar/hello/goodbye@v0 23 missing: true 24 -- main.cue -- 25 package main 26 import "example.com/blah@v0" 27 28 -- _registry/example.com_v0.0.1/cue.mod/module.cue -- 29 module: "example.com@v0" 30 language: version: "v0.8.0" 31 -- _registry/example.com_v0.0.1/blah/blah.cue -- 32 package blah 33 -- _registry/example.com_v0.0.1/x.cue -- 34 package blah 35 import _ "foo.com/bar/hello/goodbye@v0" 36 -- _registry/example.com_v0.0.1/y.cue -- 37 package other 38 import _ "foo.com/bar/somethingelse@v0"