diff options
| author | 2026-01-01 18:12:44 +0100 | |
|---|---|---|
| committer | 2026-01-01 18:24:02 +0100 | |
| commit | 9e5c5ada9907247cbeeadf2e9b817a015abf888f (patch) | |
| tree | 65111d833a28abe545f392f70e1026916581f7d9 /go.mod | |
| parent | initial commit (diff) | |
| download | odescsitoolbox-6163643b019fbaf422cdce04f2d1ed0fa2855b23.tar.xz | |
feat: SCSI Toolbox for Linuxv0.1.0
Support the SCSI Toolbox API on Linux using "SCSI Generic" driver and
the "SG_IO" ioctl, along with an extremely simple CLI tool to interact
with the SCSI emulator.
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -0,0 +1,14 @@ +// SPDX-FileCopyrightText: NONE +// SPDX-License-Identifier: CC0-1.0 + +module go.terinstock.com/odescsitoolbox + +go 1.25.5 + +require ( + github.com/dustin/go-humanize v1.0.1 + golang.org/x/sys v0.39.0 + gotest.tools/v3 v3.5.2 +) + +require github.com/google/go-cmp v0.6.0 // indirect |
