opencode-cloud 1.0.6 → 1.0.8
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 +10 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -171,6 +171,16 @@ This is a monorepo with:
|
|
|
171
171
|
|
|
172
172
|
The npm package compiles the Rust core on install (no prebuilt binaries).
|
|
173
173
|
|
|
174
|
+
### Cargo.toml Sync Requirement
|
|
175
|
+
|
|
176
|
+
The `packages/core/Cargo.toml` file must use **explicit values** rather than `workspace = true` references. This is because when users install the npm package, they only get `packages/core/` without the workspace root `Cargo.toml`, so workspace inheritance would fail.
|
|
177
|
+
|
|
178
|
+
When updating package metadata (version, edition, rust-version, etc.), keep both files in sync:
|
|
179
|
+
- `Cargo.toml` (workspace root)
|
|
180
|
+
- `packages/core/Cargo.toml`
|
|
181
|
+
|
|
182
|
+
Use `scripts/set-all-versions.sh <version>` to update versions across all files automatically.
|
|
183
|
+
|
|
174
184
|
## License
|
|
175
185
|
|
|
176
186
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-cloud",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "CLI for managing opencode as a persistent cloud service",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"arm64"
|
|
39
39
|
],
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@opencode-cloud/core": "1.0.
|
|
41
|
+
"@opencode-cloud/core": "1.0.8"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"typescript": "^5.7.3",
|