Jeff Washington (jwash) 
							
						 
					 
					
						
						
							
						
						89a31ff473 
					 
					
						
						
							
							change untar to use unpack instead of unpack_in ( #19216 )  
						
						... 
						
						
						
						* change untar to use unpack instead of unpack_in
* hacky, but maybe passes tests
* chore: bump tar from 0.4.35 to 0.4.37
Bumps [tar](https://github.com/alexcrichton/tar-rs ) from 0.4.35 to 0.4.37.
- [Release notes](https://github.com/alexcrichton/tar-rs/releases )
- [Commits](https://github.com/alexcrichton/tar-rs/compare/0.4.35...0.4.37 )
---
updated-dependencies:
- dependency-name: tar
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
* [auto-commit] Update all Cargo lock files
* cleanup
* cleanup, add validate_inside_dst
* collapse use
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
* delete comment line
* add comments
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com >
Co-authored-by: Tyera Eulberg <teulberg@gmail.com > 
						
						
					 
					
						2021-08-18 15:49:02 -05:00 
						 
				 
			
				
					
						
							
							
								Justin Starry 
							
						 
					 
					
						
						
							
						
						c50b01cb60 
					 
					
						
						
							
							Store versioned transactions in the ledger, disabled by default ( #19139 )  
						
						... 
						
						
						
						* Add support for versioned transactions, but disable by default
* merge conflicts
* trent's feedback
* bump Cargo.lock
* Fix transaction error encoding
* Rename legacy_transaction method
* cargo clippy
* Clean up casts, int arithmetic, and unused methods
* Check for duplicates in sanitized message conversion
* fix clippy
* fix new test
* Fix bpf conditional compilation for message module 
						
						
					 
					
						2021-08-17 15:17:56 -07:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						098e2b2de3 
					 
					
						
						
							
							chore: bump memmap2 from 0.3.0 to 0.3.1 ( #19255 )  
						
						... 
						
						
						
						* chore: bump memmap2 from 0.3.0 to 0.3.1
Bumps [memmap2](https://github.com/RazrFalcon/memmap2-rs ) from 0.3.0 to 0.3.1.
- [Release notes](https://github.com/RazrFalcon/memmap2-rs/releases )
- [Changelog](https://github.com/RazrFalcon/memmap2-rs/blob/master/CHANGELOG.md )
- [Commits](https://github.com/RazrFalcon/memmap2-rs/compare/v.0.3.0...v0.3.1 )
---
updated-dependencies:
- dependency-name: memmap2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
* [auto-commit] Update all Cargo lock files
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com > 
						
						
					 
					
						2021-08-17 15:49:50 -06:00 
						 
				 
			
				
					
						
							
							
								Justin Starry 
							
						 
					 
					
						
						
							
						
						fd33f523ab 
					 
					
						
						
							
							Generate packet offsets for versioned messages ( #19138 )  
						
						... 
						
						
						
						* Add support for generating packet offsets for new versioned message
* Remove outdated test
* match over version 
						
						
					 
					
						2021-08-16 17:55:15 -07:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						9be988db41 
					 
					
						
						
							
							Fix memoverlap check ( #19232 )  
						
						
						
						
					 
					
						2021-08-16 16:16:52 -07:00 
						 
				 
			
				
					
						
							
							
								Kirill Fomichev 
							
						 
					 
					
						
						
							
						
						d10e37a829 
					 
					
						
						
							
							add test for AsRef  
						
						
						
						
					 
					
						2021-08-15 07:43:50 -07:00 
						 
				 
			
				
					
						
							
							
								Kirill Fomichev 
							
						 
					 
					
						
						
							
						
						930465e67c 
					 
					
						
						
							
							Add AsRef<AccountInfo> for AccountInfo  
						
						
						
						
					 
					
						2021-08-15 07:43:50 -07:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						04c0c608a3 
					 
					
						
						
							
							Split solana_sdk.h ( #19172 )  
						
						
						
						
					 
					
						2021-08-13 09:49:24 -07:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						0b50bb2b20 
					 
					
						
						
							
							Deprecate FeeCalculator returning APIs ( #19120 )  
						
						
						
						
					 
					
						2021-08-13 09:08:20 -07:00 
						 
				 
			
				
					
						
							
							
								Tao Zhu 
							
						 
					 
					
						
						
							
						
						414d904959 
					 
					
						
						
							
							Reject blocks for costs above the max block cost ( #18994 )  
						
						... 
						
						
						
						* added realtime cost checking logic to reject block that would exceed max limit:
- defines max limits at block_cost_limits.rs
- right after each bath's execution, accumulate its cost and check again
  limit, return error if limit is exceeded
* update abi that changed due to adding additional TransactionError
* To avoid counting stats mltiple times, only accumulate execute-timing when a bank is completed
* gate it by a feature
* move cost const def into block_cost_limits.rs
* redefine the cost for signature and account access, removed signer part as it is not well defined for now
* check if per_program_timings of execute_timings before sending 
						
						
					 
					
						2021-08-12 10:48:47 -05:00 
						 
				 
			
				
					
						
							
							
								Alexander Meißner 
							
						 
					 
					
						
						
							
						
						85befbc8cd 
					 
					
						
						
							
							Removes bpf_loader_upgradeable_program feature gate. ( #19102 )  
						
						
						
						
					 
					
						2021-08-11 00:08:57 +02:00 
						 
				 
			
				
					
						
							
							
								Dmitri Makarov 
							
						 
					 
					
						
						
							
						
						d6a2b70438 
					 
					
						
						
							
							Bump bpf-tools to v1.15 ( #19117 )  
						
						... 
						
						
						
						- update to rust 1.54.0 
						
						
					 
					
						2021-08-10 07:21:14 +00:00 
						 
				 
			
				
					
						
							
							
								Justin Starry 
							
						 
					 
					
						
						
							
						
						8817f59b6e 
					 
					
						
						
							
							Version transaction message and add new message format ( #18725 )  
						
						... 
						
						
						
						* Version transaction message and add new message format
* Update abi digest due to message path change
* Update v0.rs
Fix comment
* Update original.rs
* Update message versions name and address map indexes field name
* s/original/legacy
* update comment
* cargo fmt
* Update abi digest due to legacy rename 
						
						
					 
					
						2021-08-09 22:03:39 -07:00 
						 
				 
			
				
					
						
							
							
								Brian Anderson 
							
						 
					 
					
						
						
							
						
						b67ffab370 
					 
					
						
						
							
							Add more API documentation for Rust RpcClient ( #19021 )  
						
						... 
						
						
						
						* Add doc links to Transaction API docs
* Add more RpcClient API docs
* Reflow some rpc_client docs
* Update client/src/rpc_client.rs
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
* Update client/src/rpc_client.rs
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
* Update client/src/rpc_client.rs
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
* Update sdk/src/transaction.rs
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
* Update RpcClient docs per review
Co-authored-by: Tyera Eulberg <teulberg@gmail.com > 
						
						
					 
					
						2021-08-05 15:03:33 -06:00 
						 
				 
			
				
					
						
							
							
								Trent Nelson 
							
						 
					 
					
						
						
							
						
						d60ccf64e1 
					 
					
						
						
							
							bump recommended maps/nofiles  
						
						
						
						
					 
					
						2021-08-04 11:15:18 -06:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						6d95d679c4 
					 
					
						
						
							
							chore: bump curve25519-dalek from 3.1.0 to 3.2.0 ( #19051 )  
						
						... 
						
						
						
						* chore: bump curve25519-dalek from 3.1.0 to 3.2.0
Bumps [curve25519-dalek](https://github.com/dalek-cryptography/curve25519-dalek ) from 3.1.0 to 3.2.0.
- [Release notes](https://github.com/dalek-cryptography/curve25519-dalek/releases )
- [Changelog](https://github.com/dalek-cryptography/curve25519-dalek/blob/main/CHANGELOG.md )
- [Commits](https://github.com/dalek-cryptography/curve25519-dalek/compare/3.1.0...3.2.0 )
---
updated-dependencies:
- dependency-name: curve25519-dalek
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
* [auto-commit] Update all Cargo lock files
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com > 
						
						
					 
					
						2021-08-04 09:14:32 -06:00 
						 
				 
			
				
					
						
							
							
								Jon Cinque 
							
						 
					 
					
						
						
							
						
						2b33c0c165 
					 
					
						
						
							
							stake: Allow stakes with unmatched credits observed to merge ( #18985 )  
						
						... 
						
						
						
						* stake: Allow stakes with unmatched credits observed to merge
* Address feedback
* Remove branch by doing a ceiling in one calc 
						
						
					 
					
						2021-08-04 10:43:34 -04:00 
						 
				 
			
				
					
						
							
							
								Alexander Meißner 
							
						 
					 
					
						
						
							
						
						0a63f65c03 
					 
					
						
						
							
							Bumps solana_rbpf to v0.2.14 ( #18869 )  
						
						... 
						
						
						
						* Bumps solana_rbpf to v0.2.14
* Feature gate for verify_mul64_imm_nonzero as discussed in #17520 . 
						
						
					 
					
						2021-08-04 09:50:28 +02:00 
						 
				 
			
				
					
						
							
							
								Dmitri Makarov 
							
						 
					 
					
						
						
							
						
						cde1461555 
					 
					
						
						
							
							Bump bpf-tools to v1.14 ( #19023 )  
						
						... 
						
						
						
						- improved memory operations performance
- minor fixes 
						
						
					 
					
						2021-08-03 09:13:58 +00:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						c16bf02448 
					 
					
						
						
							
							chore: bump serde from 1.0.126 to 1.0.127 ( #19010 )  
						
						... 
						
						
						
						* chore: bump serde from 1.0.126 to 1.0.127
Bumps [serde](https://github.com/serde-rs/serde ) from 1.0.126 to 1.0.127.
- [Release notes](https://github.com/serde-rs/serde/releases )
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.126...v1.0.127 )
---
updated-dependencies:
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
* [auto-commit] Update all Cargo lock files
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <you@example.com > 
						
						
					 
					
						2021-08-02 21:16:34 +00:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						77861e2d40 
					 
					
						
						
							
							Feature disable fees sysvar ( #18981 )  
						
						... 
						
						
						
						* Feature disable fees sysvar
* nudge 
						
						
					 
					
						2021-08-02 00:31:11 +00:00 
						 
				 
			
				
					
						
							
							
								Trent Nelson 
							
						 
					 
					
						
						
							
						
						21bc43ed58 
					 
					
						
						
							
							nonce: Unify NonceError with SystemError  
						
						
						
						
					 
					
						2021-07-30 14:47:14 -06:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						fe1ee49807 
					 
					
						
						
							
							chore: bump serde_json from 1.0.65 to 1.0.66 ( #18990 )  
						
						... 
						
						
						
						* chore: bump serde_json from 1.0.65 to 1.0.66
Bumps [serde_json](https://github.com/serde-rs/json ) from 1.0.65 to 1.0.66.
- [Release notes](https://github.com/serde-rs/json/releases )
- [Commits](https://github.com/serde-rs/json/compare/v1.0.65...v1.0.66 )
---
updated-dependencies:
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
* [auto-commit] Update all Cargo lock files
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <you@example.com > 
						
						
					 
					
						2021-07-30 10:46:47 -06:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						ef17cf3bdb 
					 
					
						
						
							
							Cleanup loader features ( #18977 )  
						
						
						
						
					 
					
						2021-07-29 15:03:00 -07:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						dfbb0c559b 
					 
					
						
						
							
							deprecate fees sysvar ( #18960 )  
						
						
						
						
					 
					
						2021-07-29 10:48:14 -07:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						0cf52e2060 
					 
					
						
						
							
							chore: bump serde_json from 1.0.64 to 1.0.65 ( #18968 )  
						
						... 
						
						
						
						* chore: bump serde_json from 1.0.64 to 1.0.65
Bumps [serde_json](https://github.com/serde-rs/json ) from 1.0.64 to 1.0.65.
- [Release notes](https://github.com/serde-rs/json/releases )
- [Commits](https://github.com/serde-rs/json/compare/v1.0.64...v1.0.65 )
---
updated-dependencies:
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
* [auto-commit] Update all Cargo lock files
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com > 
						
						
					 
					
						2021-07-29 16:52:02 +00:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						9529284194 
					 
					
						
						
							
							Nonce gets blockhash from invoke_context ( #18950 )  
						
						
						
						
					 
					
						2021-07-29 01:50:20 -07:00 
						 
				 
			
				
					
						
							
							
								sakridge 
							
						 
					 
					
						
						
							
						
						84e78316b1 
					 
					
						
						
							
							Write helper for multithread update ( #18808 )  
						
						
						
						
					 
					
						2021-07-29 03:16:36 +02:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						0167daa116 
					 
					
						
						
							
							cleanup feature consistent_recent_blockhashes_sysvar ( #18932 )  
						
						
						
						
					 
					
						2021-07-28 10:25:33 -07:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						14f0ce850d 
					 
					
						
						
							
							chore: bump blake3 from 0.3.8 to 1.0.0 ( #18908 )  
						
						... 
						
						
						
						* chore: bump blake3 from 0.3.8 to 1.0.0
Bumps [blake3](https://github.com/BLAKE3-team/BLAKE3 ) from 0.3.8 to 1.0.0.
- [Release notes](https://github.com/BLAKE3-team/BLAKE3/releases )
- [Commits](https://github.com/BLAKE3-team/BLAKE3/compare/0.3.8...1.0.0 )
---
updated-dependencies:
- dependency-name: blake3
  dependency-type: direct:production
  update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
* Make versions consistent
* Enable new feature
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tyera Eulberg <tyera@solana.com > 
						
						
					 
					
						2021-07-27 17:55:21 -06:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						72e374d0f3 
					 
					
						
						
							
							Deprecate SysvarRecentBlockhashes ( #18875 )  
						
						
						
						
					 
					
						2021-07-27 16:34:21 -07:00 
						 
				 
			
				
					
						
							
							
								niedhui 
							
						 
					 
					
						
						
							
						
						dc6ec02021 
					 
					
						
						
							
							Fix link typo in program README ( #18916 )  
						
						... 
						
						
						
						Signed-off-by: niedhui <niedhui@gmail.com > 
						
						
					 
					
						2021-07-27 08:54:37 -05:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						eaeeffa5a3 
					 
					
						
						
							
							Add macros for deprecacted ids ( #18907 )  
						
						
						
						
					 
					
						2021-07-26 20:54:46 -07:00 
						 
				 
			
				
					
						
							
							
								Brian Anderson 
							
						 
					 
					
						
						
							
						
						846787e7f4 
					 
					
						
						
							
							Autolink URL in docs for sdk::feature_set ( #18874 )  
						
						
						
						
					 
					
						2021-07-23 18:48:37 +00:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						7fc4cfebc8 
					 
					
						
						
							
							Rename BpfComputeBudget ( #18768 )  
						
						
						
						
					 
					
						2021-07-22 10:18:51 -07:00 
						 
				 
			
				
					
						
							
							
								Jon Cinque 
							
						 
					 
					
						
						
							
						
						51f3b9aa7c 
					 
					
						
						
							
							feature: add new token program feature ( #18780 )  
						
						... 
						
						
						
						* feature: add new token program feature
* Fixup test
* Update to spl-token v3.2.0
* Update Cargo.lock + fmt
* Update token program version in fetch-spl.sh
* Bump associated token program to 1.0.3
* Add aToken so 
						
						
					 
					
						2021-07-21 14:34:25 +02:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						395ee4ec68 
					 
					
						
						
							
							chore: bump libsecp256k1 from 0.5.0 to 0.6.0 ( #18774 )  
						
						... 
						
						
						
						* chore: bump libsecp256k1 from 0.5.0 to 0.6.0
Bumps [libsecp256k1](https://github.com/paritytech/libsecp256k1 ) from 0.5.0 to 0.6.0.
- [Release notes](https://github.com/paritytech/libsecp256k1/releases )
- [Changelog](https://github.com/paritytech/libsecp256k1/blob/master/CHANGELOG.md )
- [Commits](https://github.com/paritytech/libsecp256k1/commits )
---
updated-dependencies:
- dependency-name: libsecp256k1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
* Update all versions, lock files
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tyera Eulberg <tyera@solana.com > 
						
						
					 
					
						2021-07-20 13:14:47 -06:00 
						 
				 
			
				
					
						
							
							
								Justin Starry 
							
						 
					 
					
						
						
							
						
						207c90bd8b 
					 
					
						
						
							
							Shorten long SerializeWith type paths in abi digest ( #18734 )  
						
						
						
						
					 
					
						2021-07-20 08:59:50 -05:00 
						 
				 
			
				
					
						
							
							
								steviez 
							
						 
					 
					
						
						
							
						
						b9dc85a934 
					 
					
						
						
							
							Add comments on how to add a new feature switch ( #18686 )  
						
						
						
						
					 
					
						2021-07-18 12:48:09 -05:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						5f9f3724d0 
					 
					
						
						
							
							Remove unused compute budget item ( #18706 )  
						
						
						
						
					 
					
						2021-07-16 09:12:17 +00:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						6cf3c1ab8f 
					 
					
						
						
							
							tx wide compute budget ( #18631 )  
						
						
						
						
					 
					
						2021-07-16 00:31:22 -07:00 
						 
				 
			
				
					
						
							
							
								Justin Starry 
							
						 
					 
					
						
						
							
						
						d166b9856a 
					 
					
						
						
							
							Move transaction sanitization earlier in the pipeline ( #18655 )  
						
						... 
						
						
						
						* Move transaction sanitization earlier in the pipeline
* Renamed HashedTransaction to SanitizedTransaction
* Implement deref for sanitized transaction
* bring back process_transactions test method
* Use sanitized transactions for cost model calculation 
						
						
					 
					
						2021-07-15 22:51:27 -05:00 
						 
				 
			
				
					
						
							
							
								Brian Anderson 
							
						 
					 
					
						
						
							
						
						37ee0b5599 
					 
					
						
						
							
							Eliminate doc warnings and fix some markdown ( #18566 )  
						
						... 
						
						
						
						* Fix link target in doc comment
* Fix formatting of log examples in process_instruction
* Fix doc markdown in solana-gossip
* Fix doc markdown in solana-runtime
* Escape square braces in doc comments to avoid warnings
* Surround 'account references' doc items in code spans to avoid warnings
* Fix code block in loader_upgradeable_instruction
* Fix doctest for loader_upgradable_instruction 
						
						
					 
					
						2021-07-16 00:40:07 +00:00 
						 
				 
			
				
					
						
							
							
								Trent Nelson 
							
						 
					 
					
						
						
							
						
						abe5a0a349 
					 
					
						
						
							
							gate libsecp256k1 upgrade to v0.5.0  
						
						
						
						
					 
					
						2021-07-15 18:43:55 +00:00 
						 
				 
			
				
					
						
							
							
								Trent Nelson 
							
						 
					 
					
						
						
							
						
						3a85b77bb5 
					 
					
						
						
							
							hijack secp256k1 enablement feature plumbing for libsecp256k1 upgrade  
						
						
						
						
					 
					
						2021-07-15 18:43:55 +00:00 
						 
				 
			
				
					
						
							
							
								Trent Nelson 
							
						 
					 
					
						
						
							
						
						568660b402 
					 
					
						
						
							
							Revert "Remove feature switch for secp256k1 program ( #18467 )"  
						
						... 
						
						
						
						This reverts commit fd574dcb3b 
						
						
					 
					
						2021-07-15 18:43:55 +00:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						21868439d5 
					 
					
						
						
							
							chore: bump borsh from 0.9.0 to 0.9.1 ( #18664 )  
						
						... 
						
						
						
						* chore: bump borsh from 0.9.0 to 0.9.1
Bumps [borsh](https://github.com/near/borsh-rs ) from 0.9.0 to 0.9.1.
- [Release notes](https://github.com/near/borsh-rs/releases )
- [Changelog](https://github.com/near/borsh-rs/blob/master/CHANGELOG.md )
- [Commits](https://github.com/near/borsh-rs/compare/v0.9.0...v0.9.1 )
---
updated-dependencies:
- dependency-name: borsh
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
* [auto-commit] Update all Cargo lock files
* Bump other borsh deps
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com > 
						
						
					 
					
						2021-07-14 22:31:12 -06:00 
						 
				 
			
				
					
						
							
							
								Dmitri Makarov 
							
						 
					 
					
						
						
							
						
						d117be6792 
					 
					
						
						
							
							Reword help of generate-child-script-on-failure cargo bpf tools option ( #18685 )  
						
						
						
						
					 
					
						2021-07-15 03:31:33 +00:00 
						 
				 
			
				
					
						
							
							
								Dmitri Makarov 
							
						 
					 
					
						
						
							
						
						6f72f8b1fc 
					 
					
						
						
							
							Generate a script to rerun the failed sub-command in cargo-test-bpf ( #18582 )  
						
						... 
						
						
						
						* Generate a script to rerun the failed sub-command in cargo-test-bpf
* Generate a script to rerun the failed sub-command in cargo-build-bpf
* Add cargo-build-bpf test for generate-child-script-on-failure option 
						
						
					 
					
						2021-07-15 01:02:42 +00:00 
						 
				 
			
				
					
						
							
							
								sakridge 
							
						 
					 
					
						
						
							
						
						7f2254225e 
					 
					
						
						
							
							Move entry/poh to own crate to speed up poh bench build ( #18225 )  
						
						
						
						
					 
					
						2021-07-14 14:16:29 +02:00