Skip to content

Commit

Permalink
bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
abarisani committed Jul 14, 2022
1 parent 9542ab9 commit f0e9f16
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 10 deletions.
8 changes: 6 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ module github.com/usbarmory/armory-ums
go 1.18

require (
github.com/usbarmory/tamago v0.0.0-20220523113853-2cf301ace971
github.com/usbarmory/crucible v0.0.0-20220412125126-837bdb65a20d // indirect
github.com/usbarmory/tamago v0.0.0-20220714104148-d5b7c14a0fbb
)

require (
github.com/usbarmory/crucible v0.0.0-20220714120504-72486669d880 // indirect
go.mozilla.org/pkcs7 v0.0.0-20210826202110-33d05740a352 // indirect
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f // indirect
)
10 changes: 6 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
github.com/usbarmory/crucible v0.0.0-20220412125126-837bdb65a20d h1:oseSijm6DZQ+6HB60MrUI+8+ih41xBY2mTsROMxNev0=
github.com/usbarmory/crucible v0.0.0-20220412125126-837bdb65a20d/go.mod h1:ABOnojjZ3kh3ob5LH11XeNvaNdLxOW0rdoDn1l2PURc=
github.com/usbarmory/tamago v0.0.0-20220523113853-2cf301ace971 h1:GTLMWe9qe9ttgplYBOIWT7k8cj3RofAQI5I7rGDk4y8=
github.com/usbarmory/tamago v0.0.0-20220523113853-2cf301ace971/go.mod h1:Lok79mjbJnhoBGqhX5cCUsZtSemsQF5FNZW+2R1dRr8=
github.com/usbarmory/crucible v0.0.0-20220714120504-72486669d880 h1:ogyDoUb9ZDxH/0MDP/duSnRkf+U6+QvLBTg30bcIIU4=
github.com/usbarmory/crucible v0.0.0-20220714120504-72486669d880/go.mod h1:FY45ll2dddCy+oXYXTlFe0QVhUQCvHAAXTqlArwzDWw=
github.com/usbarmory/tamago v0.0.0-20220714104148-d5b7c14a0fbb h1:hMUTOoMrjgbP/Yjvy3SAyHFZ+W3v1cQTrvO09R1cqa8=
github.com/usbarmory/tamago v0.0.0-20220714104148-d5b7c14a0fbb/go.mod h1:Lok79mjbJnhoBGqhX5cCUsZtSemsQF5FNZW+2R1dRr8=
go.mozilla.org/pkcs7 v0.0.0-20210826202110-33d05740a352 h1:CCriYyAfq1Br1aIYettdHZTy8mBTIPo7We18TuO/bak=
go.mozilla.org/pkcs7 v0.0.0-20210826202110-33d05740a352/go.mod h1:SNgMg+EgDFwmvSmLRTNKC5fegJjB7v23qTQ0XLGUNHk=
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f h1:Ax0t5p6N38Ga0dThY21weqDEyz2oklo4IvDkpigvkD8=
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
8 changes: 4 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ func main() {
iface := buildMassStorageInterface()
device.Configurations[0].AddInterface(iface)

usb.USB1.Init()
usb.USB1.DeviceMode()
usb.USB1.Reset()
usbarmory.USB1.Init()
usbarmory.USB1.DeviceMode()
usbarmory.USB1.Reset()

// never returns
usb.USB1.Start(device)
usbarmory.USB1.Start(device)
}

0 comments on commit f0e9f16

Please sign in to comment.