File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -2,15 +2,13 @@ module github.com/tailscale/go-cache-plugin
2
2
3
3
go 1.23
4
4
5
- toolchain go1.23.1
6
-
7
5
require (
8
6
github.com/aws/aws-sdk-go-v2/config v1.27.28
9
7
github.com/aws/aws-sdk-go-v2/service/s3 v1.59.0
10
8
github.com/creachadair/atomicfile v0.3.5
11
9
github.com/creachadair/command v0.1.17
12
10
github.com/creachadair/flax v0.0.2
13
- github.com/creachadair/gocache v0.0.0-20241113195928-1e410bbfdd61
11
+ github.com/creachadair/gocache v0.0.0-20241114042026-37379ee3e160
14
12
github.com/creachadair/mds v0.21.4
15
13
github.com/creachadair/mhttp v0.0.0-20240908014720-a77225a19b8b
16
14
github.com/creachadair/scheddle v0.0.0-20240919010233-b6854e09d972
@@ -58,3 +56,5 @@ require (
58
56
golang.org/x/tools v0.23.0 // indirect
59
57
google.golang.org/protobuf v1.33.0 // indirect
60
58
)
59
+
60
+ retract v0.0.16
Original file line number Diff line number Diff line change @@ -46,8 +46,8 @@ github.com/creachadair/command v0.1.17 h1:2ZHtS5u/32RdbPYNQrpu9Wf5i6zEuq5YtwcIQQ
46
46
github.com/creachadair/command v0.1.17 /go.mod h1:JyiZVgQzhzPWa8DdE6Hfl+IOi7DMpXToBEvQCQoST7c =
47
47
github.com/creachadair/flax v0.0.2 h1:E0cc6njSIhSh6wSP9jSp/Rdx9pPDtru4vhaazxbNU5k =
48
48
github.com/creachadair/flax v0.0.2 /go.mod h1:K8bFvn8hMdAljQkaKNc7I3os5Wk36JxkyCkfdZ7S8d4 =
49
- github.com/creachadair/gocache v0.0.0-20241113195928-1e410bbfdd61 h1:1emBa6KM+LaXs9xHyv4B50w4QdERHPzt8jExAmjZsWU =
50
- github.com/creachadair/gocache v0.0.0-20241113195928-1e410bbfdd61 /go.mod h1:9BNK4UqnyFY8qt5Bl7XthjMRRckOMAFGRaxSZ+ED7rY =
49
+ github.com/creachadair/gocache v0.0.0-20241114042026-37379ee3e160 h1:XiqP9XrhbY0w2Wfiu6MZVxygrhcN1qGVdqBvnJ/TBN4 =
50
+ github.com/creachadair/gocache v0.0.0-20241114042026-37379ee3e160 /go.mod h1:9BNK4UqnyFY8qt5Bl7XthjMRRckOMAFGRaxSZ+ED7rY =
51
51
github.com/creachadair/mds v0.21.4 h1:osKuLbjkV7YswBnhuTJh1lCDkqZMQnNfFVn0j8wLpz8 =
52
52
github.com/creachadair/mds v0.21.4 /go.mod h1:1ltMWZd9yXhaHEoZwBialMaviWVUpRPvMwVP7saFAzM =
53
53
github.com/creachadair/mhttp v0.0.0-20240908014720-a77225a19b8b h1:B6laO9uL+fvT6rwhABEyYBs7MT6YgnDa7HyU5wypqEI =
Original file line number Diff line number Diff line change @@ -38,14 +38,14 @@ import (
38
38
//
39
39
// Each output object is stored in a file named:
40
40
//
41
- // [<prefix>/]object /<xx>/<object-id>
41
+ // [<prefix>/]output /<xx>/<object-id>
42
42
//
43
43
// The object and action IDs are encoded as lower-case hexadecimal strings,
44
44
// with "<xx>" denoting the first two bytes of the ID to partition the space.
45
45
//
46
46
// The contents of each action file have the format:
47
47
//
48
- // <object -id> <timestamp>
48
+ // <output -id> <timestamp>
49
49
//
50
50
// where the object ID is hex encoded and the timestamp is Unix nanoseconds.
51
51
// The object file contains just the binary data of the object.
You can’t perform that action at this time.
0 commit comments