Skip to content

Commit

Permalink
Updated dependencies - borsh 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wkennedy committed Apr 9, 2024
1 parent 8b8a89d commit e9502b2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
7 changes: 3 additions & 4 deletions borsh-schema-writer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "borsh-schema-writer"
version = "1.0.0"
version = "1.0.1"
edition = "2021"
authors = ["Will Kennedy"]
description = "Write a BorshSchemaContainer to a binary file"
Expand All @@ -12,9 +12,8 @@ categories = ["parsing"]
exclude=["/tests", "/examples", "/benches", "/docs", "/target", "/.github", "/.gitignore", "/.gitattributes", "/.gitmodules", "/.travis.yml", "/.cargo-ok", "/.git", "/.idea"]

[dependencies]
borsh = { version = "1.1.1", features = ["std", "unstable__schema"] }
borsh-derive = "1.1.1"

borsh = { version = "1.4.0", features = ["std", "unstable__schema"] }
borsh-derive = "1.4.0"

[lib]
doctest = false
16 changes: 8 additions & 8 deletions borsh-serde-adapter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "borsh-serde-adapter"
version = "1.0.1"
version = "1.0.2"
edition = "2021"
authors = ["Will Kennedy"]
description = "Adapter to go from borsh to serde and vice versa"
Expand All @@ -12,15 +12,15 @@ categories = ["parsing"]
exclude=["/tests", "/examples", "/benches", "/docs", "/target", "/.github", "/.gitignore", "/.gitattributes", "/.gitmodules", "/.travis.yml", "/.cargo-ok", "/.git", "/.idea"]

[dependencies]
log = "0.4.20"
log = "0.4.21"
serde = { version = "1.0.190", features = ["derive"] }
serde_derive = "1.0.190"
serde_json = "1.0.108"
anyhow = "1.0.75"
serde_derive = "1.0.197"
serde_json = "1.0.115"
anyhow = "1.0.81"
simdutf8 = { version = "0.1.4", optional = true }
borsh = { version = "1.1.1", features = ["unstable__schema", "std"] }
borsh-derive = "1.1.1"
thiserror = "1.0.50"
borsh = { version = "1.4.0", features = ["unstable__schema", "std"] }
borsh-derive = "1.4.0"
thiserror = "1.0.58"

[lib]
doctest = false
2 changes: 1 addition & 1 deletion borsh-serde-adapter/tests/integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

use std::fs::File;
use std::io::{BufReader, Write};
use borsh::{BorshDeserialize, BorshSerialize, BorshSchema, schema_container_of, to_vec, from_slice};
use borsh::{BorshDeserialize, BorshSerialize, BorshSchema, schema_container_of, to_vec};
use borsh::schema::{BorshSchemaContainer};
use borsh_serde_adapter::deserialize_adapter::deserialize_from_schema;
use borsh_serde_adapter::serialize_adapter::serialize_serde_json_to_borsh;
Expand Down

0 comments on commit e9502b2

Please sign in to comment.