Skip to content

Commit

Permalink
Update dependencies in Cargo.toml files
Browse files Browse the repository at this point in the history
Updated various dependencies including `borsh`, `log`, `serde`, and others to their latest versions in both `borsh-serde-adapter` and `borsh-schema-writer` crates. This ensures compatibility with newer versions and benefits from performance improvements and bug fixes.
  • Loading branch information
wkennedy committed Aug 14, 2024
1 parent e9502b2 commit a8477cd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions borsh-schema-writer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ categories = ["parsing"]
exclude=["/tests", "/examples", "/benches", "/docs", "/target", "/.github", "/.gitignore", "/.gitattributes", "/.gitmodules", "/.travis.yml", "/.cargo-ok", "/.git", "/.idea"]

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

[lib]
doctest = false
17 changes: 9 additions & 8 deletions borsh-serde-adapter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,16 @@ categories = ["parsing"]
exclude=["/tests", "/examples", "/benches", "/docs", "/target", "/.github", "/.gitignore", "/.gitattributes", "/.gitmodules", "/.travis.yml", "/.cargo-ok", "/.git", "/.idea"]

[dependencies]
log = "0.4.21"
serde = { version = "1.0.190", features = ["derive"] }
serde_derive = "1.0.197"
serde_json = "1.0.115"
anyhow = "1.0.81"
log = "0.4.22"
serde = { version = "1.0.205", features = ["derive"] }
serde_derive = "1.0.205"
serde_json = "1.0.122"
anyhow = "1.0.86"
simdutf8 = { version = "0.1.4", optional = true }
borsh = { version = "1.4.0", features = ["unstable__schema", "std"] }
borsh-derive = "1.4.0"
thiserror = "1.0.58"
borsh = { version = "1.5.1", features = ["unstable__schema", "std"] }
borsh-derive = "1.5.1"
thiserror = "1.0.63"
wasm-bindgen = "0.2.92"

[lib]
doctest = false

0 comments on commit a8477cd

Please sign in to comment.