Skip to content

Commit a4d37a6

Browse files
committed
chore: bump workspace to v0.2.0 and publish zerompk to crates.io
Increment every crate version from 0.1.1 to 0.2.0 and update all workspace-level dependency references to match. Migrate zerompk from a pinned git fork to the published crates.io release (0.5.0), removing the [patch.crates-io] workaround that was required to keep zerompk_derive in sync with the fork.
1 parent d58d052 commit a4d37a6

2 files changed

Lines changed: 60 additions & 67 deletions

File tree

Cargo.lock

Lines changed: 36 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 24 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ members = [
2727
resolver = "2"
2828

2929
[workspace.package]
30-
version = "0.1.1"
30+
version = "0.2.0"
3131
edition = "2024"
3232
rust-version = "1.94"
3333
license = "BUSL-1.1"
@@ -38,27 +38,27 @@ documentation = "https://docs.rs/nodedb"
3838

3939
[workspace.dependencies]
4040
# Foundation crates (internal)
41-
nodedb = { path = "nodedb", version = "0.1" }
42-
nodedb-types = { path = "nodedb-types", version = "0.1" }
43-
nodedb-client = { path = "nodedb-client", version = "0.1" }
44-
nodedb-bridge = { path = "nodedb-bridge", version = "0.1" }
45-
nodedb-wal = { path = "nodedb-wal", version = "0.1" }
46-
nodedb-mem = { path = "nodedb-mem", version = "0.1" }
47-
nodedb-crdt = { path = "nodedb-crdt", version = "0.1" }
48-
nodedb-raft = { path = "nodedb-raft", version = "0.1" }
49-
nodedb-cluster = { path = "nodedb-cluster", version = "0.1" }
50-
nodedb-query = { path = "nodedb-query", version = "0.1" }
51-
nodedb-codec = { path = "nodedb-codec", version = "0.1" }
52-
nodedb-spatial = { path = "nodedb-spatial", version = "0.1" }
53-
nodedb-graph = { path = "nodedb-graph", version = "0.1" }
54-
nodedb-vector = { path = "nodedb-vector", version = "0.1" }
55-
nodedb-vector-gpu = { path = "nodedb-vector-gpu", version = "0.1" }
56-
nodedb-fts = { path = "nodedb-fts", version = "0.1" }
57-
nodedb-strict = { path = "nodedb-strict", version = "0.1" }
58-
nodedb-columnar = { path = "nodedb-columnar", version = "0.1" }
59-
nodedb-array = { path = "nodedb-array", version = "0.1" }
60-
nodedb-sql = { path = "nodedb-sql", version = "0.1" }
61-
nodedb-test-support = { path = "nodedb-test-support", version = "0.1" }
41+
nodedb = { path = "nodedb", version = "0.2" }
42+
nodedb-types = { path = "nodedb-types", version = "0.2" }
43+
nodedb-client = { path = "nodedb-client", version = "0.2" }
44+
nodedb-bridge = { path = "nodedb-bridge", version = "0.2" }
45+
nodedb-wal = { path = "nodedb-wal", version = "0.2" }
46+
nodedb-mem = { path = "nodedb-mem", version = "0.2" }
47+
nodedb-crdt = { path = "nodedb-crdt", version = "0.2" }
48+
nodedb-raft = { path = "nodedb-raft", version = "0.2" }
49+
nodedb-cluster = { path = "nodedb-cluster", version = "0.2" }
50+
nodedb-query = { path = "nodedb-query", version = "0.2" }
51+
nodedb-codec = { path = "nodedb-codec", version = "0.2" }
52+
nodedb-spatial = { path = "nodedb-spatial", version = "0.2" }
53+
nodedb-graph = { path = "nodedb-graph", version = "0.2" }
54+
nodedb-vector = { path = "nodedb-vector", version = "0.2" }
55+
nodedb-vector-gpu = { path = "nodedb-vector-gpu", version = "0.2" }
56+
nodedb-fts = { path = "nodedb-fts", version = "0.2" }
57+
nodedb-strict = { path = "nodedb-strict", version = "0.2" }
58+
nodedb-columnar = { path = "nodedb-columnar", version = "0.2" }
59+
nodedb-array = { path = "nodedb-array", version = "0.2" }
60+
nodedb-sql = { path = "nodedb-sql", version = "0.2" }
61+
nodedb-test-support = { path = "nodedb-test-support", version = "0.2" }
6262

6363
# Async runtimes
6464
tokio = { version = "1", features = ["full"] }
@@ -160,12 +160,9 @@ serde_json = "1"
160160
sonic-rs = "0.5"
161161
chrono = { version = "0.4", features = ["std"], default-features = false }
162162

163-
# MessagePack
163+
# MessagePack
164164
rmpv = "1"
165-
zerompk = { version = "0.4", git = "https://github.com/farhan-syah/zerompk", rev = "1dd71a0de6b6c99f2c2dbbc69106bb87b1e2cdcb", features = [
166-
"std",
167-
"derive",
168-
] }
165+
zerompk = { version = "0.5", features = ["std", "derive"] }
169166

170167
# Bitmap
171168
roaring = "0.11"
@@ -276,8 +273,3 @@ incremental = false
276273
inherits = "dev"
277274
debug = true
278275

279-
[patch.crates-io]
280-
# zerompk_derive is pulled in transitively by zerompk via the git source above;
281-
# the patch entry below ensures any sibling crate that references it via the
282-
# crates.io name resolves to the same fork rev.
283-
zerompk_derive = { version = "0.4", git = "https://github.com/farhan-syah/zerompk", rev = "1dd71a0de6b6c99f2c2dbbc69106bb87b1e2cdcb" }

0 commit comments

Comments
 (0)