Skip to content

Commit ae7f9ea

Browse files
chore: bump grovedb to develop d548e282 (flat-subtree drop #849 merged)
Moves the pin from grovedb PR #849's head to the develop merge commit, so it no longer references a deletable PR branch. No code changes; the TTL drainage, ranked, and time-range batteries all pass on the merged rev. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent f273618 commit ae7f9ea

7 files changed

Lines changed: 31 additions & 31 deletions

File tree

‎Cargo.lock‎

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

‎packages/rs-dpp/Cargo.toml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ strum = { version = "0.26", features = ["derive"] }
7171
json-schema-compatibility-validator = { path = '../rs-json-schema-compatibility-validator', optional = true }
7272
once_cell = "1.19.0"
7373
tracing = { version = "0.1.41" }
74-
grovedb-commitment-tree = { git = "https://github.com/dashpay/grovedb", rev = "01a75381c9e8ada07e61751c5cb0a3e6913c5e14", optional = true }
74+
grovedb-commitment-tree = { git = "https://github.com/dashpay/grovedb", rev = "d548e28228e2aca1361d9b12835388be0f811a92", optional = true }
7575

7676
[dev-dependencies]
7777
tokio = { version = "1.40", features = ["full"] }

‎packages/rs-drive-abci/Cargo.toml‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ derive_more = { version = "1.0", features = ["from", "deref", "deref_mut"] }
8282
async-trait = "0.1.77"
8383
console-subscriber = { version = "0.4", optional = true }
8484
bls-signatures = { git = "https://github.com/dashpay/bls-signatures", rev = "0842b17583888e8f46c252a4ee84cdfd58e0546f", optional = true }
85-
grovedb-commitment-tree = { git = "https://github.com/dashpay/grovedb", rev = "01a75381c9e8ada07e61751c5cb0a3e6913c5e14" }
85+
grovedb-commitment-tree = { git = "https://github.com/dashpay/grovedb", rev = "d548e28228e2aca1361d9b12835388be0f811a92" }
8686
nonempty = "0.11"
8787
# Shielded-pool snapshot needs raw RocksDB SstFileWriter + ingest_external_file_cf
8888
# bindings, and blake3 for the snapshot-file checksum.
@@ -108,7 +108,7 @@ dpp = { path = "../rs-dpp", default-features = false, features = [
108108
drive = { path = "../rs-drive", features = ["fixtures-and-mocks"] }
109109
drive-proof-verifier = { path = "../rs-drive-proof-verifier" }
110110
strategy-tests = { path = "../strategy-tests" }
111-
grovedb-commitment-tree = { git = "https://github.com/dashpay/grovedb", rev = "01a75381c9e8ada07e61751c5cb0a3e6913c5e14", features = ["client"] }
111+
grovedb-commitment-tree = { git = "https://github.com/dashpay/grovedb", rev = "d548e28228e2aca1361d9b12835388be0f811a92", features = ["client"] }
112112
assert_matches = "1.5.0"
113113
drive-abci = { path = ".", features = ["testing-config", "mocks", "shielded_test_data"] }
114114
bls-signatures = { git = "https://github.com/dashpay/bls-signatures", rev = "0842b17583888e8f46c252a4ee84cdfd58e0546f" }
@@ -122,8 +122,8 @@ integer-encoding = { version = "4.0.0" }
122122

123123
# For dump_only_default_and_aux_cfs_under_shielded_subtree_prefix — same
124124
# subtree-prefix algorithm grovedb uses internally.
125-
grovedb-path = { git = "https://github.com/dashpay/grovedb", rev = "01a75381c9e8ada07e61751c5cb0a3e6913c5e14" }
126-
grovedb-storage = { git = "https://github.com/dashpay/grovedb", rev = "01a75381c9e8ada07e61751c5cb0a3e6913c5e14" }
125+
grovedb-path = { git = "https://github.com/dashpay/grovedb", rev = "d548e28228e2aca1361d9b12835388be0f811a92" }
126+
grovedb-storage = { git = "https://github.com/dashpay/grovedb", rev = "d548e28228e2aca1361d9b12835388be0f811a92" }
127127

128128
[features]
129129
default = ["bls-signatures"]

‎packages/rs-drive/Cargo.toml‎

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ enum-map = { version = "2.0.3", optional = true }
5252
intmap = { version = "3.0.1", features = ["serde"], optional = true }
5353
chrono = { version = "0.4.35", optional = true }
5454
itertools = { version = "0.13", optional = true }
55-
grovedb = { git = "https://github.com/dashpay/grovedb", rev = "01a75381c9e8ada07e61751c5cb0a3e6913c5e14", optional = true, default-features = false }
56-
grovedb-costs = { git = "https://github.com/dashpay/grovedb", rev = "01a75381c9e8ada07e61751c5cb0a3e6913c5e14", optional = true }
57-
grovedb-path = { git = "https://github.com/dashpay/grovedb", rev = "01a75381c9e8ada07e61751c5cb0a3e6913c5e14" }
58-
grovedb-query = { git = "https://github.com/dashpay/grovedb", rev = "01a75381c9e8ada07e61751c5cb0a3e6913c5e14" }
59-
grovedb-storage = { git = "https://github.com/dashpay/grovedb", rev = "01a75381c9e8ada07e61751c5cb0a3e6913c5e14", optional = true }
60-
grovedb-version = { git = "https://github.com/dashpay/grovedb", rev = "01a75381c9e8ada07e61751c5cb0a3e6913c5e14" }
61-
grovedb-epoch-based-storage-flags = { git = "https://github.com/dashpay/grovedb", rev = "01a75381c9e8ada07e61751c5cb0a3e6913c5e14" }
55+
grovedb = { git = "https://github.com/dashpay/grovedb", rev = "d548e28228e2aca1361d9b12835388be0f811a92", optional = true, default-features = false }
56+
grovedb-costs = { git = "https://github.com/dashpay/grovedb", rev = "d548e28228e2aca1361d9b12835388be0f811a92", optional = true }
57+
grovedb-path = { git = "https://github.com/dashpay/grovedb", rev = "d548e28228e2aca1361d9b12835388be0f811a92" }
58+
grovedb-query = { git = "https://github.com/dashpay/grovedb", rev = "d548e28228e2aca1361d9b12835388be0f811a92" }
59+
grovedb-storage = { git = "https://github.com/dashpay/grovedb", rev = "d548e28228e2aca1361d9b12835388be0f811a92", optional = true }
60+
grovedb-version = { git = "https://github.com/dashpay/grovedb", rev = "d548e28228e2aca1361d9b12835388be0f811a92" }
61+
grovedb-epoch-based-storage-flags = { git = "https://github.com/dashpay/grovedb", rev = "d548e28228e2aca1361d9b12835388be0f811a92" }
6262

6363
[dev-dependencies]
6464
criterion = "0.5"

‎packages/rs-platform-version/Cargo.toml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = "MIT"
1111
thiserror = { version = "2.0.12" }
1212
bincode = { version = "=2.0.1" }
1313
versioned-feature-core = { git = "https://github.com/dashpay/versioned-feature-core", version = "1.0.0" }
14-
grovedb-version = { git = "https://github.com/dashpay/grovedb", rev = "01a75381c9e8ada07e61751c5cb0a3e6913c5e14" }
14+
grovedb-version = { git = "https://github.com/dashpay/grovedb", rev = "d548e28228e2aca1361d9b12835388be0f811a92" }
1515

1616
[features]
1717
mock-versions = []

‎packages/rs-platform-wallet/Cargo.toml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ zeroize = "1"
6969
log = "0.4"
7070

7171
# Shielded pool (optional, behind `shielded` feature)
72-
grovedb-commitment-tree = { git = "https://github.com/dashpay/grovedb", rev = "01a75381c9e8ada07e61751c5cb0a3e6913c5e14", optional = true }
72+
grovedb-commitment-tree = { git = "https://github.com/dashpay/grovedb", rev = "d548e28228e2aca1361d9b12835388be0f811a92", optional = true }
7373
# Direct `rusqlite` access so `FileBackedShieldedStore::open_path` can set
7474
# WAL + synchronous=NORMAL pragmas before handing the connection to
7575
# `ClientPersistentCommitmentTree`. Version locked to match the rev grovedb

‎packages/rs-sdk/Cargo.toml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ drive = { path = "../rs-drive", default-features = false, features = [
1818
] }
1919

2020
drive-proof-verifier = { path = "../rs-drive-proof-verifier", default-features = false }
21-
grovedb-commitment-tree = { git = "https://github.com/dashpay/grovedb", rev = "01a75381c9e8ada07e61751c5cb0a3e6913c5e14", features = [
21+
grovedb-commitment-tree = { git = "https://github.com/dashpay/grovedb", rev = "d548e28228e2aca1361d9b12835388be0f811a92", features = [
2222
"client",
2323
"sqlite",
2424
], optional = true }

0 commit comments

Comments
 (0)