-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
22 additions
and
22 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "bonfida-autobindings" | ||
description = "Utility to generate JavaScript and python bindings for Solana smart contracts following the Bonfida code conventions" | ||
license = "MIT" | ||
version = "0.4.3" | ||
version = "0.4.4" | ||
authors = ["ellttBen <[email protected]>"] | ||
edition = "2018" | ||
repository = "https://github.com/Bonfida/bonfida-utils.git" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "bonfida-autoproject" | ||
description = "Utility to generate a solana smart contract template" | ||
license = "MIT" | ||
version = "0.4.3" | ||
version = "0.4.4" | ||
authors = ["Lcchy <[email protected]>"] | ||
edition = "2018" | ||
repository = "https://github.com/Bonfida/bonfida-utils.git" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bonfida-macros" | ||
version = "0.4.3" | ||
version = "0.4.4" | ||
authors = ["ellttBen <[email protected]>"] | ||
edition = "2018" | ||
description = "Bonfida-utils macros" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bonfida-test-utils" | ||
version = "0.4.3" | ||
version = "0.4.4" | ||
authors = ["ellttBen <[email protected]>"] | ||
description = "Solana program testing utilities when working with bonfida-utils." | ||
license = "MIT" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bonfida-utils" | ||
version = "0.4.3" | ||
version = "0.4.4" | ||
authors = ["ellttBen <[email protected]>"] | ||
description = "Various solana program writing utilities in use by Bonfida." | ||
license = "MIT" | ||
|
@@ -17,7 +17,7 @@ benchmarking = ["lazy_static", "regex", "serde", "serde_json"] | |
borsh = "0.10.3" | ||
solana-program = "1.16.16" | ||
pyth-sdk-solana = "0.4.0" | ||
bonfida-macros = {version = "0.4.3", path = "../macros"} | ||
bonfida-macros = {version = "0.4.4", path = "../macros"} | ||
bytemuck = "1.9.1" | ||
lazy_static = {version = "1.4.0", optional=true} | ||
regex = {version = "1.5.5", optional=true} | ||
|