-
Notifications
You must be signed in to change notification settings - Fork 27
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
1 parent
00cfc53
commit 48399dc
Showing
6 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ description = "Shank CLI that extracts solita compatible IDL from your Rust Sola | |
authors = ["Metaplex Maintainers <[email protected]>"] | ||
repository = "https://github.com/metaplex-foundation/shank" | ||
license = "Apache-2.0" | ||
version = "0.3.1-alpha.4" | ||
version = "0.3.1-alpha.5" | ||
edition = "2018" | ||
|
||
[[bin]] | ||
|
@@ -17,4 +17,4 @@ anyhow = "1.0.48" | |
clap = { version = "3.0.14", features = ["derive"] } | ||
fern = { version = "0.6.0", features = ["colored"] } | ||
log = "0.4.14" | ||
shank_idl = { version= "0.3.1-alpha.4", path = "../shank-idl" } | ||
shank_idl = { version= "0.3.1-alpha.5", path = "../shank-idl" } |
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 = "shank_idl" | ||
version = "0.3.1-alpha.4" | ||
version = "0.3.1-alpha.5" | ||
description = "Converts information extracted via shank derive macros to a solita compatible IDL." | ||
authors = ["Metaplex Maintainers <[email protected]>"] | ||
repository = "https://github.com/metaplex-foundation/shank" | ||
|
@@ -13,5 +13,5 @@ cargo_toml = "0.17" | |
heck = "0.3.3" | ||
serde = { version = "1.0.130", features = ["derive"] } | ||
serde_json = "1.0.72" | ||
shank_macro_impl = { version = "0.3.1-alpha.4", path = "../shank-macro-impl" } | ||
shank_macro_impl = { version = "0.3.1-alpha.5", path = "../shank-macro-impl" } | ||
shellexpand = "2.1.0" |
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 = "shank_macro_impl" | ||
version = "0.3.1-alpha.4" | ||
version = "0.3.1-alpha.5" | ||
description = "Implements and tests shank derive macros" | ||
authors = ["Metaplex Maintainers <[email protected]>"] | ||
repository = "https://github.com/metaplex-foundation/shank" | ||
|
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 = "shank_macro" | ||
version = "0.3.1-alpha.4" | ||
version = "0.3.1-alpha.5" | ||
description = "Provides macros used to annotate Solana Rust programs in order to extract an IDL with the shank CLI" | ||
authors = ["Metaplex Maintainers <[email protected]>"] | ||
repository = "https://github.com/metaplex-foundation/shank" | ||
|
@@ -14,6 +14,6 @@ doctest = false | |
[dependencies] | ||
proc-macro2 = "1.0.32" | ||
quote = "1.0.10" | ||
shank_macro_impl = { version = "0.3.1-alpha.4", path = "../shank-macro-impl" } | ||
shank_render = { version = "0.3.1-alpha.4", path = "../shank-render" } | ||
shank_macro_impl = { version = "0.3.1-alpha.5", path = "../shank-macro-impl" } | ||
shank_render = { version = "0.3.1-alpha.5", path = "../shank-render" } | ||
syn = "1.0.82" |
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 = "shank_render" | ||
version = "0.3.1-alpha.4" | ||
version = "0.3.1-alpha.5" | ||
description = "Renders implementaions derived from shank macros" | ||
authors = ["Metaplex Maintainers <[email protected]>"] | ||
repository = "https://github.com/metaplex-foundation/shank" | ||
|
@@ -10,7 +10,7 @@ edition = "2018" | |
[dependencies] | ||
proc-macro2 = "1.0.46" | ||
quote = "1.0.21" | ||
shank_macro_impl = { version = "0.3.1-alpha.4", path = "../shank-macro-impl" } | ||
shank_macro_impl = { version = "0.3.1-alpha.5", path = "../shank-macro-impl" } | ||
|
||
[dev-dependencies] | ||
prettyplease = "0.1.21" |
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 |
---|---|---|
|
@@ -4,9 +4,9 @@ description = "Exposes macros to annotate Rust programs to extract solita compat | |
authors = ["Metaplex Maintainers <[email protected]>"] | ||
repository = "https://github.com/metaplex-foundation/shank" | ||
license = "Apache-2.0" | ||
version = "0.3.1-alpha.4" | ||
version = "0.3.1-alpha.5" | ||
edition = "2018" | ||
|
||
|
||
[dependencies] | ||
shank_macro = { version = "0.3.1-alpha.4", path = "../shank-macro" } | ||
shank_macro = { version = "0.3.1-alpha.5", path = "../shank-macro" } |