@aptre/common 0.29.0 → 0.30.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![GoDoc Widget]][GoDoc] [![Go Report Card Widget]][Go Report Card] [![npm Widget]][npm]
4
4
 
5
- > Common build tools and utilities for Aperture Robotics Go projects.
5
+ > Unified protobuf code generation for Go, TypeScript, C++, and Rust with WASM.
6
6
 
7
7
  [GoDoc]: https://godoc.org/github.com/aperturerobotics/common
8
8
  [GoDoc Widget]: https://godoc.org/github.com/aperturerobotics/common?status.svg
@@ -11,114 +11,162 @@
11
11
  [npm]: https://www.npmjs.com/package/@aptre/common
12
12
  [npm Widget]: https://img.shields.io/npm/v/@aptre/common.svg
13
13
 
14
- ## Related Projects
14
+ ## What is this?
15
15
 
16
- - [template](https://github.com/aperturerobotics/template) - Project template using this package
17
- - [protobuf-project](https://github.com/aperturerobotics/protobuf-project) - More extensive example
16
+ This repository provides the `aptre` CLI — a single tool that generates protobuf code for **four languages** without requiring you to install protoc, protoc plugins, or language-specific toolchains. Everything runs via embedded WebAssembly modules using [wazero].
18
17
 
19
- ## Installation
18
+ [wazero]: https://github.com/tetratelabs/wazero
19
+
20
+ ### Key Features
21
+
22
+ - **Zero native dependencies** — protoc and plugins run as WASM, no installation required
23
+ - **Multi-language output** — generates Go, TypeScript, C++, and Rust from a single command
24
+ - **Smart caching** — only regenerates when source files actually change
25
+ - **Go-style imports** — use familiar import paths in your `.proto` files
26
+
27
+ ## Supported Languages
28
+
29
+ | Language | Message Types | RPC Services | Plugin |
30
+ | ---------- | ------------- | ------------------- | -------------------------- |
31
+ | Go | `*.pb.go` | `*_srpc.pb.go` | [protobuf-go-lite] |
32
+ | TypeScript | `*.pb.ts` | `*_srpc.pb.ts` | [protobuf-es-lite] |
33
+ | C++ | `*.pb.cc/h` | `*_srpc.pb.hpp/cpp` | Built-in protoc + [starpc] |
34
+ | Rust | `*.pb.rs` | `*_srpc.pb.rs` | [prost] (WASI) + [starpc] |
35
+
36
+ [protobuf-go-lite]: https://github.com/aperturerobotics/protobuf-go-lite
37
+ [protobuf-es-lite]: https://github.com/aperturerobotics/protobuf-es-lite
38
+ [starpc]: https://github.com/aperturerobotics/starpc
39
+ [prost]: https://github.com/tokio-rs/prost
40
+
41
+ ## Rust Support via WASI
42
+
43
+ The Rust code generation uses an embedded [WASI] build of `protoc-gen-prost`, meaning **you don't need Cargo, rustc, or any Rust toolchain installed** to generate `.pb.rs` files. The prost plugin runs entirely within the wazero WebAssembly runtime alongside protoc itself.
44
+
45
+ [WASI]: https://wasi.dev/
20
46
 
21
- The `aptre` CLI tool replaces Make for building Go projects with protobuf support.
47
+ This is powered by [go-protoc-gen-prost], which embeds a ~600KB WASM binary that implements the full prost protobuf code generator.
48
+
49
+ [go-protoc-gen-prost]: https://github.com/aperturerobotics/go-protoc-gen-prost
50
+
51
+ ### Example Output
52
+
53
+ Given a simple proto file:
54
+
55
+ ```protobuf
56
+ syntax = "proto3";
57
+ package echo;
58
+
59
+ message EchoMsg {
60
+ string body = 1;
61
+ }
62
+ ```
63
+
64
+ The generated `echo.pb.rs`:
65
+
66
+ ```rust
67
+ // @generated
68
+ // This file is @generated by prost-build.
69
+ #[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
70
+ pub struct EchoMsg {
71
+ #[prost(string, tag="1")]
72
+ pub body: ::prost::alloc::string::String,
73
+ }
74
+ ```
75
+
76
+ See [starpc](https://github.com/aperturerobotics/starpc) for a complete example.
77
+
78
+ ## Installation
22
79
 
23
80
  ```bash
24
- # Run directly
25
- go run github.com/aperturerobotics/common/cmd/aptre@latest <command>
81
+ # Run directly (no install needed)
82
+ go run github.com/aperturerobotics/common/cmd/aptre@latest generate
26
83
 
27
84
  # Or install globally
28
85
  go install github.com/aperturerobotics/common/cmd/aptre@latest
29
86
  ```
30
87
 
31
- ## Usage
88
+ ## Quick Start
32
89
 
33
- Start by downloading the dependencies:
90
+ 1. **Set up your project** with Go and optionally TypeScript:
34
91
 
35
92
  ```bash
36
- bun i
93
+ # Initialize Go module
94
+ go mod init github.com/yourorg/yourproject
37
95
  ```
38
96
 
39
- Protobuf imports use Go paths and package names:
97
+ 2. **Create a proto file** using Go-style imports:
40
98
 
41
99
  ```protobuf
42
100
  syntax = "proto3";
43
101
  package example;
44
102
 
45
- // Import .proto files using Go-style import paths.
103
+ // Import .proto files using Go-style import paths
46
104
  import "github.com/aperturerobotics/controllerbus/controller/controller.proto";
47
105
 
48
- // GetBusInfoResponse is the response type for GetBusInfo.
49
106
  message GetBusInfoResponse {
50
- // RunningControllers is the list of running controllers.
51
107
  repeated controller.Info running_controllers = 1;
52
108
  }
53
109
  ```
54
110
 
55
- To generate the protobuf files:
111
+ 3. **Generate code**:
56
112
 
57
113
  ```bash
114
+ # Stage files for git (required for discovery)
58
115
  git add -A
59
- go run ./cmd/aptre generate
60
- # or with bun
61
- bun run gen
116
+
117
+ # Generate all languages
118
+ go run github.com/aperturerobotics/common/cmd/aptre@latest generate
119
+
120
+ # Or with verbose output
121
+ go run github.com/aperturerobotics/common/cmd/aptre@latest generate --verbose
62
122
  ```
63
123
 
64
- ## Commands
65
-
66
- The `aptre` CLI provides the following commands:
67
-
68
- | Command | Description |
69
- | ---------------- | -------------------------------------------- |
70
- | `generate` | Generate protobuf code (Go, TypeScript, C++) |
71
- | `clean` | Remove generated files and cache |
72
- | `deps` | Ensure all dependencies are installed |
73
- | `lint` | Run golangci-lint |
74
- | `fix` | Run golangci-lint with --fix |
75
- | `test` | Run go test |
76
- | `test --browser` | Run tests in browser with WebAssembly |
77
- | `format` | Format Go code with gofumpt |
78
- | `goimports` | Run goimports |
79
- | `outdated` | Show outdated dependencies |
80
- | `release run` | Create a release using goreleaser |
81
- | `release bundle` | Create a bundled snapshot release |
82
- | `release build` | Build a snapshot release |
83
- | `release check` | Run goreleaser checks |
84
-
85
- ### Examples
124
+ ## CLI Commands
86
125
 
87
- ```bash
88
- # Generate protobuf files
89
- go run ./cmd/aptre generate
126
+ | Command | Description |
127
+ | ------------------ | -------------------------------------------------- |
128
+ | `generate` | Generate protobuf code (Go, TypeScript, C++, Rust) |
129
+ | `generate --force` | Regenerate all files, ignoring cache |
130
+ | `clean` | Remove generated files and cache |
131
+ | `deps` | Ensure all dependencies are installed |
132
+ | `lint` | Run golangci-lint |
133
+ | `fix` | Run golangci-lint with --fix |
134
+ | `test` | Run go test |
135
+ | `test --browser` | Run tests in browser with WebAssembly |
136
+ | `format` | Format Go code with gofumpt |
137
+ | `outdated` | Show outdated dependencies |
90
138
 
91
- # Force regeneration (ignore cache)
92
- go run ./cmd/aptre generate --force
139
+ ## How It Works
93
140
 
94
- # Run tests
95
- go run ./cmd/aptre test
141
+ The `aptre` tool orchestrates code generation using embedded WebAssembly:
96
142
 
97
- # Run browser/WASM tests
98
- go run ./cmd/aptre test --browser
143
+ 1. **Discovery** Finds `.proto` files matching your targets (default: `./*.proto`)
144
+ 2. **Caching** Checks `.protoc-manifest.json` to skip unchanged files
145
+ 3. **Protoc (WASM)** — Runs [go-protoc-wasi] to parse protos and invoke plugins
146
+ 4. **Plugins** — Native plugins for Go/TS, WASM plugin for Rust (prost)
147
+ 5. **Post-processing** — Fixes imports and formats output
99
148
 
100
- # Lint code
101
- go run ./cmd/aptre lint
149
+ [go-protoc-wasi]: https://github.com/aperturerobotics/go-protoc-wasi
102
150
 
103
- # Format code
104
- go run ./cmd/aptre format
151
+ ### Architecture
105
152
 
106
- # Check for outdated dependencies
107
- go run ./cmd/aptre outdated
153
+ ```
154
+ ┌─────────────────────────────────────────────────────────────┐
155
+ │ aptre CLI │
156
+ ├─────────────────────────────────────────────────────────────┤
157
+ │ wazero runtime │
158
+ ├─────────────┬─────────────────────────┬─────────────────────┤
159
+ │ protoc.wasm │ protoc-gen-prost.wasm │ Native Plugins │
160
+ │ (parsing) │ (Rust output) │ (Go, TS, C++) │
161
+ └─────────────┴─────────────────────────┴─────────────────────┘
108
162
  ```
109
163
 
110
164
  ## C++ Support
111
165
 
112
- C++ protobuf files (`.pb.cc` and `.pb.h`) are generated alongside the `.pb.go`
113
- files. Add `vendor/` to your include path and create a symlink for your project:
166
+ C++ protobuf files (`.pb.cc` and `.pb.h`) are generated alongside other outputs. Add `vendor/` to your include path:
114
167
 
115
168
  ```cmake
116
169
  # CMakeLists.txt
117
- set(VENDOR_LINK_DIR "${CMAKE_CURRENT_SOURCE_DIR}/vendor/github.com/yourorg")
118
- if(NOT EXISTS "${VENDOR_LINK_DIR}/yourproject")
119
- file(CREATE_LINK "${CMAKE_CURRENT_SOURCE_DIR}" "${VENDOR_LINK_DIR}/yourproject" SYMBOLIC)
120
- endif()
121
-
122
170
  include_directories(${PROJECT_SOURCE_DIR}/vendor)
123
171
  ```
124
172
 
@@ -126,21 +174,34 @@ include_directories(${PROJECT_SOURCE_DIR}/vendor)
126
174
  #include "github.com/yourorg/yourproject/example/example.pb.h"
127
175
  ```
128
176
 
129
- ## Embedded Protoc
177
+ For StarPC C++ services, the `*_srpc.pb.hpp` files provide client/server stubs.
130
178
 
131
- The `aptre` tool uses an embedded WebAssembly version of protoc via [go-protoc-wasi].
132
- This means you don't need to install protoc separately - it works on any platform
133
- that supports Go.
179
+ ## Configuration
134
180
 
135
- [go-protoc-wasi]: https://github.com/aperturerobotics/go-protoc-wasi
181
+ The generator uses sensible defaults but can be customized:
182
+
183
+ - **Targets**: Proto file patterns (default: `./*.proto`)
184
+ - **Exclude**: Patterns to skip (e.g., `vendor/**`)
185
+ - **ToolsDir**: Plugin binary location (default: `.tools`)
186
+ - **Cache**: Manifest file (default: `.protoc-manifest.json`)
187
+
188
+ ## Related Projects
189
+
190
+ - [starpc](https://github.com/aperturerobotics/starpc) — Streaming RPC for Go, TypeScript, and Rust
191
+ - [protobuf-go-lite](https://github.com/aperturerobotics/protobuf-go-lite) — Lightweight Go protobuf without reflection
192
+ - [protobuf-es-lite](https://github.com/aperturerobotics/protobuf-es-lite) — Lightweight TypeScript protobuf
193
+ - [go-protoc-wasi](https://github.com/aperturerobotics/go-protoc-wasi) — Embedded protoc as WASM
194
+ - [go-protoc-gen-prost](https://github.com/aperturerobotics/go-protoc-gen-prost) — Prost plugin as WASM
195
+ - [template](https://github.com/aperturerobotics/template) — Project template using this package
196
+ - [protobuf-project](https://github.com/aperturerobotics/protobuf-project) — More extensive example
136
197
 
137
198
  ## Support
138
199
 
139
- Please open a [GitHub issue] with any questions / issues.
200
+ Please open a [GitHub issue] with any questions or issues.
140
201
 
141
202
  [GitHub issue]: https://github.com/aperturerobotics/common/issues/new
142
203
 
143
- ... or feel free to reach out on [Matrix Chat] or [Discord].
204
+ ... or reach out on [Matrix Chat] or [Discord].
144
205
 
145
206
  [Matrix Chat]: https://matrix.to/#/#aperturerobotics:matrix.org
146
207
  [Discord]: https://discord.gg/KJutMESRsT
package/deps.go.tools CHANGED
@@ -13,6 +13,8 @@ import (
13
13
  _ "github.com/aperturerobotics/starpc/cmd/protoc-gen-go-starpc"
14
14
  // _ imports protoc-gen-starpc-cpp
15
15
  _ "github.com/aperturerobotics/starpc/cmd/protoc-gen-starpc-cpp"
16
+ // _ imports protoc-gen-starpc-rust
17
+ _ "github.com/aperturerobotics/starpc/cmd/protoc-gen-starpc-rust"
16
18
 
17
19
  // _ imports golangci-lint
18
20
  _ "github.com/golangci/golangci-lint/v2/pkg/golinters"
package/go.mod CHANGED
@@ -10,16 +10,16 @@ replace github.com/ipfs/go-log/v2 => github.com/paralin/ipfs-go-logrus v0.0.0-20
10
10
  require (
11
11
  github.com/aperturerobotics/abseil-cpp v0.0.0-20260131110040-4bb56e2f9017 // aperture-2
12
12
  github.com/aperturerobotics/cli v1.1.0
13
- github.com/aperturerobotics/go-protoc-wasi v0.0.0-20260131050911-b5f94b044584
14
- github.com/aperturerobotics/protobuf v0.0.0-20260131105503-b82131c27d52 // wasi
15
- github.com/aperturerobotics/protobuf-go-lite v0.12.0 // latest
13
+ github.com/aperturerobotics/go-protoc-gen-prost v0.0.0-20260203094828-3faf47d2c868 // master
14
+ github.com/aperturerobotics/go-protoc-wasi v0.0.0-20260131050911-b5f94b044584 // master
15
+ github.com/aperturerobotics/json-iterator-lite v1.0.1-0.20251104042408-0c9eb8a3f726 // indirect
16
+ github.com/aperturerobotics/protobuf v0.0.0-20260203024654-8201686529c4 // wasi
17
+ github.com/aperturerobotics/protobuf-go-lite v0.12.1 // latest
18
+ github.com/aperturerobotics/starpc v0.45.1-0.20260203090429-3e915608d4e8 // master
19
+ github.com/aperturerobotics/util v1.32.3 // indirect
16
20
  )
17
21
 
18
- require github.com/aperturerobotics/starpc v0.44.0
19
-
20
22
  require (
21
- github.com/aperturerobotics/json-iterator-lite v1.0.1-0.20251104042408-0c9eb8a3f726 // indirect
22
- github.com/aperturerobotics/util v1.32.3 // indirect
23
23
  github.com/coder/websocket v1.8.14 // indirect
24
24
  github.com/ipfs/go-cid v0.4.1 // indirect
25
25
  github.com/klauspost/cpuid/v2 v2.2.8 // indirect
@@ -38,14 +38,11 @@ require (
38
38
  github.com/pkg/errors v0.9.1 // indirect
39
39
  github.com/sirupsen/logrus v1.9.4 // indirect
40
40
  github.com/spaolacci/murmur3 v1.1.0 // indirect
41
- golang.org/x/crypto v0.45.0 // indirect
42
- golang.org/x/exp v0.0.0-20250305212735-054e65f0b394 // indirect
43
- lukechampine.com/blake3 v1.3.0 // indirect
44
- )
45
-
46
- require (
47
41
  github.com/tetratelabs/wazero v1.11.0
48
42
  github.com/xrash/smetrics v0.0.0-20250705151800-55b8f293f342 // indirect
43
+ golang.org/x/crypto v0.45.0 // indirect
44
+ golang.org/x/exp v0.0.0-20250305212735-054e65f0b394 // indirect
49
45
  golang.org/x/mod v0.32.0
50
46
  golang.org/x/sys v0.40.0 // indirect
47
+ lukechampine.com/blake3 v1.3.0 // indirect
51
48
  )
package/go.mod.tools CHANGED
@@ -11,10 +11,10 @@ replace (
11
11
  require (
12
12
  github.com/aperturerobotics/abseil-cpp v0.0.0-20260131110040-4bb56e2f9017 // indirect; aperture-2
13
13
  github.com/aperturerobotics/goprotowrap v0.4.1 // latest
14
- github.com/aperturerobotics/protobuf v0.0.0-20260131105503-b82131c27d52 // indirect; wasi
14
+ github.com/aperturerobotics/protobuf v0.0.0-20260203024654-8201686529c4 // indirect; wasi
15
15
  // github.com/aperturerobotics/goscript v0.0.61 // master
16
- github.com/aperturerobotics/protobuf-go-lite v0.12.0 // latest
17
- github.com/aperturerobotics/starpc v0.44.0 // latest
16
+ github.com/aperturerobotics/protobuf-go-lite v0.12.1 // latest
17
+ github.com/aperturerobotics/starpc v0.45.1-0.20260203090429-3e915608d4e8 // latest
18
18
  )
19
19
 
20
20
  require (
package/go.sum CHANGED
@@ -4,16 +4,18 @@ github.com/aperturerobotics/cli v1.1.0 h1:7a+YRC+EY3npAnTzhHV5gLCiw91KS0Ts3XwLIL
4
4
  github.com/aperturerobotics/cli v1.1.0/go.mod h1:M7BFP9wow5ytTzMyJQOOO991fGfsUqdTI7gGEsHfTQ8=
5
5
  github.com/aperturerobotics/go-libp2p v0.37.1-0.20241111002741-5cfbb50b74e0 h1:tGwbeDoEeQCrUQL+ClUywldqvz9eRmhcVrGwGxz2xJg=
6
6
  github.com/aperturerobotics/go-libp2p v0.37.1-0.20241111002741-5cfbb50b74e0/go.mod h1:FJkAtQcP9XxqG1NNLNHKm+wLVIGSCQX2s6CEoD+w97g=
7
+ github.com/aperturerobotics/go-protoc-gen-prost v0.0.0-20260203094828-3faf47d2c868 h1:r2j7F1tGHkchPBLL55e44g/DfYqK2JV0Ed8suMAxmlU=
8
+ github.com/aperturerobotics/go-protoc-gen-prost v0.0.0-20260203094828-3faf47d2c868/go.mod h1:OBb/beWmr/pDIZAUfi86j/4tBh2v5ctTxKMqSnh9c/4=
7
9
  github.com/aperturerobotics/go-protoc-wasi v0.0.0-20260131050911-b5f94b044584 h1:ER8DYYL71cTg39uZ+Gi699tL/hZoscUWDOw4DbizqhI=
8
10
  github.com/aperturerobotics/go-protoc-wasi v0.0.0-20260131050911-b5f94b044584/go.mod h1:vEq8i7EKb32+KXGtIEZjjhNns+BdsL2dUMw4uhy3578=
9
11
  github.com/aperturerobotics/json-iterator-lite v1.0.1-0.20251104042408-0c9eb8a3f726 h1:4B1F0DzuqPzb6WqgCjWaqDD7JU9RDsevQG5OP0DFBgs=
10
12
  github.com/aperturerobotics/json-iterator-lite v1.0.1-0.20251104042408-0c9eb8a3f726/go.mod h1:SvGGBv3OVxUyqO0ZxA/nvs6z3cg7NIbZ64TnbV2OISo=
11
- github.com/aperturerobotics/protobuf v0.0.0-20260131105503-b82131c27d52 h1:MUKCOkpUgTnqYG6546CGrHgBgoCkBUxTDKrWieJRQAo=
12
- github.com/aperturerobotics/protobuf v0.0.0-20260131105503-b82131c27d52/go.mod h1:tMgO7y6SJo/d9ZcvrpNqIQtdYT9de+QmYaHOZ4KnhOg=
13
- github.com/aperturerobotics/protobuf-go-lite v0.12.0 h1:ZPPokQtm/NPhgGv+vYD9AhInvkrzQal6MDnqcYLWvlg=
14
- github.com/aperturerobotics/protobuf-go-lite v0.12.0/go.mod h1:lGH3s5ArCTXKI4wJdlNpaybUtwSjfAG0vdWjxOfMcF8=
15
- github.com/aperturerobotics/starpc v0.44.0 h1:h9ZzagtrKoQseUWhokuQBWyL/NeYUH5W1aWAcVZfcpE=
16
- github.com/aperturerobotics/starpc v0.44.0/go.mod h1:3v2j0a1Z1olzkIFUOX1M4L+9jFp4pIbbuuZbk9ZoPRc=
13
+ github.com/aperturerobotics/protobuf v0.0.0-20260203024654-8201686529c4 h1:4Dy3BAHh2kgVdHAqtlwcFsgY0kAwUe2m3rfFcaGwGQg=
14
+ github.com/aperturerobotics/protobuf v0.0.0-20260203024654-8201686529c4/go.mod h1:tMgO7y6SJo/d9ZcvrpNqIQtdYT9de+QmYaHOZ4KnhOg=
15
+ github.com/aperturerobotics/protobuf-go-lite v0.12.1 h1:o9of87F/LFS2p5xfq32CrU99dvfqIAalTP7ZzoZK6Kg=
16
+ github.com/aperturerobotics/protobuf-go-lite v0.12.1/go.mod h1:lGH3s5ArCTXKI4wJdlNpaybUtwSjfAG0vdWjxOfMcF8=
17
+ github.com/aperturerobotics/starpc v0.45.1-0.20260203090429-3e915608d4e8 h1:JP6fhFOVLuV6iujYsaAUAWY31PIbSXQg4FsZnDuzrs8=
18
+ github.com/aperturerobotics/starpc v0.45.1-0.20260203090429-3e915608d4e8/go.mod h1:S9o4h2cxNmNCHM43z8W7+T5pT6Zujl4qnY6o5eD6X+0=
17
19
  github.com/aperturerobotics/util v1.32.3 h1:wBc6L2guYMgLEzFwORH3CLMoMpfEqbV6pDqYervo3S0=
18
20
  github.com/aperturerobotics/util v1.32.3/go.mod h1:qfRZZUDn0sEfc43JRA6rKP8bwFxliqGqJZX+p1jeOnQ=
19
21
  github.com/coder/websocket v1.8.14 h1:9L0p0iKiNOibykf283eHkKUHHrpG7f65OE3BhhO7v9g=
@@ -73,6 +75,8 @@ golang.org/x/mod v0.32.0/go.mod h1:SgipZ/3h2Ci89DlEtEXWUk/HteuRin+HHhN+WbNhguU=
73
75
  golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
74
76
  golang.org/x/sys v0.40.0 h1:DBZZqJ2Rkml6QMQsZywtnjnnGvHza6BTfYFWY9kjEWQ=
75
77
  golang.org/x/sys v0.40.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
78
+ google.golang.org/protobuf v1.36.11 h1:fV6ZwhNocDyBLK0dj+fg8ektcVegBBuEolpbTQyBNVE=
79
+ google.golang.org/protobuf v1.36.11/go.mod h1:HTf+CrKn2C3g5S8VImy6tdcUvCska2kB7j23XfzDpco=
76
80
  gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
77
81
  gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
78
82
  lukechampine.com/blake3 v1.3.0 h1:sJ3XhFINmHSrYCgl958hscfIa3bw8x4DqMP3u1YvoYE=
package/go.sum.tools CHANGED
@@ -189,14 +189,14 @@ github.com/aperturerobotics/abseil-cpp v0.0.0-20260131110040-4bb56e2f9017 h1:3U7
189
189
  github.com/aperturerobotics/abseil-cpp v0.0.0-20260131110040-4bb56e2f9017/go.mod h1:lNSJTKECIUFAnfeSqy01kXYTYe1BHubW7198jNX3nEw=
190
190
  github.com/aperturerobotics/goprotowrap v0.4.1 h1:az40TD9d65WPXi8hE7r6QKlAmkW0rFp6bmH+ro2Kahw=
191
191
  github.com/aperturerobotics/goprotowrap v0.4.1/go.mod h1:5tRlYsb4VF0ySzx2/My3u9PtzTWNu5o2bqYHj0TRw+U=
192
- github.com/aperturerobotics/protobuf v0.0.0-20260131105503-b82131c27d52 h1:MUKCOkpUgTnqYG6546CGrHgBgoCkBUxTDKrWieJRQAo=
193
- github.com/aperturerobotics/protobuf v0.0.0-20260131105503-b82131c27d52/go.mod h1:tMgO7y6SJo/d9ZcvrpNqIQtdYT9de+QmYaHOZ4KnhOg=
192
+ github.com/aperturerobotics/protobuf v0.0.0-20260203024654-8201686529c4 h1:4Dy3BAHh2kgVdHAqtlwcFsgY0kAwUe2m3rfFcaGwGQg=
193
+ github.com/aperturerobotics/protobuf v0.0.0-20260203024654-8201686529c4/go.mod h1:tMgO7y6SJo/d9ZcvrpNqIQtdYT9de+QmYaHOZ4KnhOg=
194
194
  github.com/aperturerobotics/protobuf-go v1.33.1-0.20240516052628-4470bc019102 h1:jjQCud+wqlAoe+35nfTyuDzGk3tiG5t1BMFlRXHvg3A=
195
195
  github.com/aperturerobotics/protobuf-go v1.33.1-0.20240516052628-4470bc019102/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
196
- github.com/aperturerobotics/protobuf-go-lite v0.12.0 h1:ZPPokQtm/NPhgGv+vYD9AhInvkrzQal6MDnqcYLWvlg=
197
- github.com/aperturerobotics/protobuf-go-lite v0.12.0/go.mod h1:lGH3s5ArCTXKI4wJdlNpaybUtwSjfAG0vdWjxOfMcF8=
198
- github.com/aperturerobotics/starpc v0.44.0 h1:h9ZzagtrKoQseUWhokuQBWyL/NeYUH5W1aWAcVZfcpE=
199
- github.com/aperturerobotics/starpc v0.44.0/go.mod h1:3v2j0a1Z1olzkIFUOX1M4L+9jFp4pIbbuuZbk9ZoPRc=
196
+ github.com/aperturerobotics/protobuf-go-lite v0.12.1 h1:o9of87F/LFS2p5xfq32CrU99dvfqIAalTP7ZzoZK6Kg=
197
+ github.com/aperturerobotics/protobuf-go-lite v0.12.1/go.mod h1:lGH3s5ArCTXKI4wJdlNpaybUtwSjfAG0vdWjxOfMcF8=
198
+ github.com/aperturerobotics/starpc v0.45.1-0.20260203090429-3e915608d4e8 h1:JP6fhFOVLuV6iujYsaAUAWY31PIbSXQg4FsZnDuzrs8=
199
+ github.com/aperturerobotics/starpc v0.45.1-0.20260203090429-3e915608d4e8/go.mod h1:S9o4h2cxNmNCHM43z8W7+T5pT6Zujl4qnY6o5eD6X+0=
200
200
  github.com/arbovm/levenshtein v0.0.0-20160628152529-48b4e1c0c4d0 h1:jfIu9sQUG6Ig+0+Ap1h4unLjW6YQJpKZVmUzxsD4E/Q=
201
201
  github.com/arbovm/levenshtein v0.0.0-20160628152529-48b4e1c0c4d0/go.mod h1:t2tdKJDJF9BV14lnkjHmOQgcvEKgtqs5a1N3LNdJhGE=
202
202
  github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio=
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aptre/common",
3
3
  "description": "Common project configuration files and dependencies.",
4
- "version": "0.29.0",
4
+ "version": "0.30.1",
5
5
  "license": "MIT",
6
6
  "author": {
7
7
  "name": "Aperture Robotics LLC.",