-
Notifications
You must be signed in to change notification settings - Fork 22
build!: update bincode to v2.0.1 #405
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
base: develop
Are you sure you want to change the base?
Changes from all commits
a06d8df
562c19f
b8abdc5
a526c1e
776331a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,11 @@ | |
| name = "grovedb" | ||
| description = "Fully featured database using balanced hierarchical authenticated data structures" | ||
| version = "4.0.0" | ||
| authors = ["Samuel Westrich <sam@dash.org>", "Wisdom Ogwu <wisdom@dash.org", "Evgeny Fomin <evgeny.fomin@dash.org>"] | ||
| authors = [ | ||
| "Samuel Westrich <sam@dash.org>", | ||
| "Wisdom Ogwu <wisdom@dash.org", | ||
| "Evgeny Fomin <evgeny.fomin@dash.org>", | ||
| ] | ||
| edition = "2021" | ||
| license = "MIT" | ||
| homepage = "https://www.grovedb.org" | ||
|
|
@@ -11,7 +15,7 @@ readme = "../README.md" | |
| documentation = "https://docs.rs/grovedb" | ||
|
|
||
| [dependencies] | ||
| grovedb-costs = { version = "4.0.0", path = "../costs" , optional = true } | ||
| grovedb-costs = { version = "4.0.0", path = "../costs", optional = true } | ||
| grovedbg-types = { version = "4.0.0", path = "../grovedbg-types", optional = true } | ||
| grovedb-merk = { version = "4.0.0", path = "../merk", optional = true, default-features = false } | ||
| grovedb-path = { version = "4.0.0", path = "../path" } | ||
|
|
@@ -21,8 +25,8 @@ grovedb-visualize = { version = "4.0.0", path = "../visualize", optional = true | |
| grovedb-element = { version = "4.0.0", path = "../grovedb-element" } | ||
|
|
||
| axum = { version = "0.8", features = ["macros"], optional = true } | ||
| bincode = { version = "=2.0.0-rc.3" } | ||
| bincode_derive = { version = "=2.0.0-rc.3" } | ||
| bincode = { version = "=2.0.1" } | ||
| bincode_derive = { version = "=2.0.1" } | ||
|
Comment on lines
+28
to
+29
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🌐 Web query:
💡 Result: bincode 2.0.1 was released on March 10, 2025. [1][2] Sources: 🌐 Web query:
💡 Result: Short summary of what changed / how to migrate from 2.0.0-rc.3 → 2.0.1
If you want the exact release changelog/commit list for 2.0.1 (diff vs rc.3) I can fetch the crate repo / release tags and show the commits or CHANGELOG entries. Citations:
Bincode 2.0.1 release confirmed, but codebase migration to new API must be verified. bincode 2.0.1 exists (released March 10, 2025) and is the stable release following rc.3. However, the migration from rc.3 to 2.0.1 includes breaking API changes that require codebase updates:
Verify that grovedb's codebase has been updated to use the new API signatures and derive macros. The exact version pinning is appropriate, but the code migration must be completed to successfully use bincode 2.0.1. 🤖 Prompt for AI Agents |
||
| blake3 = "1.8.1" | ||
| hex = "0.4.3" | ||
| indexmap = "2.7.0" | ||
|
|
@@ -32,7 +36,10 @@ itertools = { version = "0.14.0", optional = true } | |
| tempfile = { version = "3.23.0", optional = true } | ||
| thiserror = { version = "2.0.17", optional = true } | ||
| tokio-util = { version = "0.7.17", optional = true } | ||
| tokio = { version = "1.48.0", features = ["rt-multi-thread", "net"], optional = true } | ||
| tokio = { version = "1.48.0", features = [ | ||
| "rt-multi-thread", | ||
| "net", | ||
| ], optional = true } | ||
| tower-http = { version = "0.6.8", features = ["fs"], optional = true } | ||
| zip-extensions = { version = "0.13.0", optional = true } | ||
| serde = { version = "1.0.219", features = ["derive"], optional = true } | ||
|
|
@@ -60,10 +67,7 @@ harness = false | |
| default = ["full", "estimated_costs"] | ||
| proof_debug = ["grovedb-merk/proof_debug"] | ||
| serde = ["dep:serde", "grovedb-merk/serde", "indexmap/serde"] | ||
| full = [ | ||
| "grovedb-merk/full", | ||
| "minimal", | ||
| ] | ||
| full = ["grovedb-merk/full", "minimal"] | ||
| minimal = [ | ||
| "grovedb-merk/minimal", | ||
| "thiserror", | ||
|
|
@@ -75,9 +79,7 @@ minimal = [ | |
| "grovedb-costs", | ||
| "intmap", | ||
| ] | ||
| visualize = [ | ||
| "grovedb-visualize", | ||
| ] | ||
| visualize = ["grovedb-visualize"] | ||
| verify = [ | ||
| "grovedb-merk/verify", | ||
| "grovedb-costs", | ||
|
|
@@ -94,7 +96,7 @@ grovedbg = [ | |
| "axum", | ||
| "tower-http", | ||
| "zip-extensions", | ||
| "tempfile" | ||
| "tempfile", | ||
| ] | ||
|
|
||
| [build-dependencies] | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.