Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(platform)!: fix reference of items between epochs #2064

Merged
merged 23 commits into from
Aug 20, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
bumped grovedb
ogabrielides committed Aug 15, 2024

Verified

This commit was signed with the committer’s verified signature.
ogabrielides Odysseas Gabrielides
commit 94328255f1986226307f79c932121e8804702429
10 changes: 5 additions & 5 deletions packages/rs-drive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -51,11 +51,11 @@ enum-map = { version = "2.0.3", optional = true }
intmap = { version = "2.0.0", features = ["serde"], optional = true }
chrono = { version = "0.4.35", optional = true }
itertools = { version = "0.11.0", optional = true }
grovedb = { git = "https://github.com/dashpay/grovedb", rev = "a0540320151bf1ee8ff0cd2e5aac9ee250e713dc", optional = true, default-features = false }
grovedb-costs = { git = "https://github.com/dashpay/grovedb", rev = "a0540320151bf1ee8ff0cd2e5aac9ee250e713dc", optional = true }
grovedb-path = { git = "https://github.com/dashpay/grovedb", rev = "a0540320151bf1ee8ff0cd2e5aac9ee250e713dc" }
grovedb-storage = { git = "https://github.com/dashpay/grovedb", rev = "a0540320151bf1ee8ff0cd2e5aac9ee250e713dc", optional = true }
grovedb-version = { git = "https://github.com/dashpay/grovedb", rev = "a0540320151bf1ee8ff0cd2e5aac9ee250e713dc"}
grovedb = { git = "https://github.com/dashpay/grovedb", branch = "verify_ref_after_batch_op", optional = true, default-features = false }
grovedb-costs = { git = "https://github.com/dashpay/grovedb", branch = "verify_ref_after_batch_op", optional = true }
grovedb-path = { git = "https://github.com/dashpay/grovedb", branch = "verify_ref_after_batch_op" }
grovedb-storage = { git = "https://github.com/dashpay/grovedb", branch = "verify_ref_after_batch_op", optional = true }
grovedb-version = { git = "https://github.com/dashpay/grovedb", branch = "verify_ref_after_batch_op"}

[dev-dependencies]
criterion = "0.3.5"
2 changes: 1 addition & 1 deletion packages/rs-platform-version/Cargo.toml
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ license = "MIT"
thiserror = { version = "1.0.59" }
bincode = { version = "2.0.0-rc.3"}
versioned-feature-core = { git = "https://github.com/dashpay/versioned-feature-core", version = "1.0.0" }
grovedb-version = { git = "https://github.com/dashpay/grovedb", rev = "a0540320151bf1ee8ff0cd2e5aac9ee250e713dc" }
grovedb-version = { git = "https://github.com/dashpay/grovedb", branch = "verify_ref_after_batch_op" }
once_cell = "1.19.0"

[features]