diff --git a/borsh-schema-writer/Cargo.toml b/borsh-schema-writer/Cargo.toml index 5f2c9e3..8c51589 100644 --- a/borsh-schema-writer/Cargo.toml +++ b/borsh-schema-writer/Cargo.toml @@ -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" @@ -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 \ No newline at end of file diff --git a/borsh-serde-adapter/Cargo.toml b/borsh-serde-adapter/Cargo.toml index 93d4e11..118de97 100644 --- a/borsh-serde-adapter/Cargo.toml +++ b/borsh-serde-adapter/Cargo.toml @@ -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" @@ -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 \ No newline at end of file diff --git a/borsh-serde-adapter/tests/integration_tests.rs b/borsh-serde-adapter/tests/integration_tests.rs index 12ddc0b..2e469e4 100644 --- a/borsh-serde-adapter/tests/integration_tests.rs +++ b/borsh-serde-adapter/tests/integration_tests.rs @@ -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;