diff --git a/Cargo.lock b/Cargo.lock index d13d9ee..0ae7858 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -834,6 +834,15 @@ dependencies = [ "hashbrown 0.13.2", ] +[[package]] +name = "borsh" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4e6cb63579996213e822f6d828b0a47e1d23b1e8708f52d18a6b1af5670dd207" +dependencies = [ + "cfg_aliases", +] + [[package]] name = "borsh-derive" version = "0.9.3" @@ -1041,6 +1050,12 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" +[[package]] +name = "cfg_aliases" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" + [[package]] name = "chrono" version = "0.4.31" @@ -5645,7 +5660,7 @@ name = "stake-pool-tools" version = "0.1.0" dependencies = [ "anchor-lang", - "borsh 0.10.3", + "borsh 1.0.0", "bytemuck", "clap 4.4.6", "dotenv", diff --git a/Cargo.toml b/Cargo.toml index 6f4a435..468c8cd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ version = "0.1.0" description = "" [dependencies] -borsh = "0.10" +borsh = "1.0" bytemuck = "1.13" clap = { version = "4.1.11", features = ["derive", "env"] } dotenv = "0.15.0"