Skip to content

Commit

Permalink
chore: upgrade borsh (#65)
Browse files Browse the repository at this point in the history
upgrades borsh to latest official release 1.2
  • Loading branch information
SWvheerden authored Nov 30, 2023
1 parent 716df7e commit ecddc06
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [0.6.2](https://github.com/tari-project/tari_utilities/compare/v0.6.1...v0.6.2) (2023-11-30)

### Features

* upgrade borsch to official release 1.2

### [0.6.1](https://github.com/tari-project/tari_utilities/compare/v0.6.0...v0.6.1) (2023-09-27)

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ repository = "https://github.com/tari-project/tari"
homepage = "https://tari.com"
readme = "README.md"
license = "BSD-3-Clause"
version = "0.6.1"
version = "0.6.2"
edition = "2018"

[dependencies]
base58-monero = { version = "0.3", default-features = false,optional = true}
base64 = { version = "0.13", default-features = false, optional = true , features = ["alloc"] }
bincode = { version = "1.3", default-features = false, optional = true }
newtype-ops = { version = "0.1", default-features = false , optional = true}
borsh = { version = "0.10", optional = true }
borsh = { version = "1.2", optional = true, features = ["derive"] }
generic-array = "0.14"
serde = { version = "1.0", optional = true, default-features = false , features = ["derive"] }
serde_json = { version = "1.0", default-features = false, optional = true, features = ["std"]}
Expand Down

0 comments on commit ecddc06

Please sign in to comment.