From 118be5c6cb0a34d728696adda1452578cc44762e Mon Sep 17 00:00:00 2001 From: armaniferrante Date: Tue, 23 Mar 2021 10:40:32 -0700 Subject: [PATCH] lang: Use official borsh crate --- Cargo.lock | 2 +- lang/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e4865516..3d940531 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -165,7 +165,7 @@ dependencies = [ "anchor-attribute-program", "anchor-attribute-state", "anchor-derive-accounts", - "serum-borsh", + "borsh", "solana-program", "thiserror", ] diff --git a/lang/Cargo.toml b/lang/Cargo.toml index 97d55482..cee6f66c 100644 --- a/lang/Cargo.toml +++ b/lang/Cargo.toml @@ -19,6 +19,6 @@ anchor-attribute-program = { path = "./attribute/program", version = "0.3.0" } anchor-attribute-state = { path = "./attribute/state", version = "0.3.0" } anchor-attribute-interface = { path = "./attribute/interface", version = "0.3.0" } anchor-derive-accounts = { path = "./derive/accounts", version = "0.3.0" } -serum-borsh = "0.8.1-serum.1" +borsh = "0.8.2" solana-program = "=1.5.15" thiserror = "1.0.20"