-
Notifications
You must be signed in to change notification settings - Fork 9
chore: move deps to workspace #333
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: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,11 +15,11 @@ algokit_transact = { path = "../algokit_transact", features = ['test_utils'] } | |
| ffi_macros = { path = "../ffi_macros" } | ||
|
|
||
| snafu = "0.8" | ||
|
||
| rmp-serde = "1.3.0" | ||
| serde = { version = "1.0.216", features = ["derive"] } | ||
| serde_bytes = "0.11.15" | ||
| serde_json = "1.0.133" | ||
| base64 = "0.22.1" | ||
| rmp-serde = { workspace = true } | ||
| serde = { workspace = true } | ||
| serde_bytes = { workspace = true } | ||
| serde_json = { workspace = true } | ||
| base64 = { workspace = true } | ||
|
|
||
| uniffi = { workspace = true, features = [ | ||
| "scaffolding-ffi-buffer-fns", | ||
|
|
@@ -37,7 +37,7 @@ uniffi = { workspace = true, features = [ | |
| algokit_transact = { path = "../algokit_transact", features = ['test_utils'] } | ||
| ffi_macros = { path = "../ffi_macros" } | ||
| snafu = "0.8" | ||
|
||
| serde = { version = "1.0.216", features = ["derive"] } | ||
| serde_bytes = "0.11.15" | ||
| serde_json = "1.0.133" | ||
| base64 = "0.22.1" | ||
| serde = { workspace = true } | ||
| serde_bytes = { workspace = true } | ||
| serde_json = { workspace = true } | ||
| base64 = { workspace = true } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change upgrades base64 from version 0.21 to 0.22.1. While this aligns with the base64 0.22 API already used in the code (Engine trait and general_purpose), this version upgrade should be explicitly mentioned in the PR description since it goes beyond just "moving deps to workspace". The base64 0.22 release included breaking API changes, so this upgrade should be intentional and tested.