Skip to content

Commit

Permalink
doc: add last step
Browse files Browse the repository at this point in the history
  • Loading branch information
dj8yf0μl committed Oct 2, 2023
1 parent 05b7788 commit 2fdfaba
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/migration_guides/v0.9_to_v1.0.0_near_sdk_rs.md
Original file line number Diff line number Diff line change
Expand Up @@ -569,5 +569,19 @@ index d61ee8e..cae776c 100644
pub struct FungibleToken {
```
## 12. finally, we update `borsh` version to `1.0.0`:
```diff
diff --git a/near-sdk/Cargo.toml b/near-sdk/Cargo.toml
index a015a64..e6099d4 100644
--- a/near-sdk/Cargo.toml
+++ b/near-sdk/Cargo.toml
@@ -26,3 +26,3 @@ near-sys = { path = "../near-sys", version = "0.2" }
base64 = "0.13"
-borsh = { version = "1.0.0-alpha.5", features = ["derive"] }
+borsh = { version = "1.0.0", features = ["derive"] }
bs58 = "0.4"
```

0 comments on commit 2fdfaba

Please sign in to comment.