-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
5018e98
commit c5b6184
Showing
18 changed files
with
49 additions
and
47 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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "anchor-cli" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
authors = ["armaniferrante <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
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,13 +1,13 @@ | ||
[package] | ||
name = "anchor-client" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
authors = ["Serum Foundation <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
description = "Rust client for Anchor programs" | ||
|
||
[dependencies] | ||
anchor-lang = { path = "../lang", version = "0.11.0" } | ||
anchor-lang = { path = "../lang", version = "0.11.1" } | ||
anyhow = "1.0.32" | ||
regex = "1.4.5" | ||
serde = { version = "1.0.122", features = ["derive"] } | ||
|
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 = "anchor-lang" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
authors = ["Serum Foundation <[email protected]>"] | ||
repository = "https://github.com/project-serum/anchor" | ||
edition = "2018" | ||
|
@@ -23,14 +23,14 @@ anchor-debug = [ | |
] | ||
|
||
[dependencies] | ||
anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.11.0" } | ||
anchor-attribute-account = { path = "./attribute/account", version = "0.11.0" } | ||
anchor-attribute-error = { path = "./attribute/error", version = "0.11.0" } | ||
anchor-attribute-program = { path = "./attribute/program", version = "0.11.0" } | ||
anchor-attribute-state = { path = "./attribute/state", version = "0.11.0" } | ||
anchor-attribute-interface = { path = "./attribute/interface", version = "0.11.0" } | ||
anchor-attribute-event = { path = "./attribute/event", version = "0.11.0" } | ||
anchor-derive-accounts = { path = "./derive/accounts", version = "0.11.0" } | ||
anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.11.1" } | ||
anchor-attribute-account = { path = "./attribute/account", version = "0.11.1" } | ||
anchor-attribute-error = { path = "./attribute/error", version = "0.11.1" } | ||
anchor-attribute-program = { path = "./attribute/program", version = "0.11.1" } | ||
anchor-attribute-state = { path = "./attribute/state", version = "0.11.1" } | ||
anchor-attribute-interface = { path = "./attribute/interface", version = "0.11.1" } | ||
anchor-attribute-event = { path = "./attribute/event", version = "0.11.1" } | ||
anchor-derive-accounts = { path = "./derive/accounts", version = "0.11.1" } | ||
base64 = "0.13.0" | ||
borsh = "0.9" | ||
bytemuck = "1.4.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 = "anchor-attribute-access-control" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
authors = ["Serum Foundation <[email protected]>"] | ||
repository = "https://github.com/project-serum/anchor" | ||
license = "Apache-2.0" | ||
|
@@ -18,5 +18,5 @@ proc-macro2 = "1.0" | |
quote = "1.0" | ||
syn = { version = "1.0.60", features = ["full"] } | ||
anyhow = "1.0.32" | ||
anchor-syn = { path = "../../syn", version = "0.11.0" } | ||
anchor-syn = { path = "../../syn", version = "0.11.1" } | ||
regex = "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 = "anchor-attribute-account" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
authors = ["Serum Foundation <[email protected]>"] | ||
repository = "https://github.com/project-serum/anchor" | ||
license = "Apache-2.0" | ||
|
@@ -18,4 +18,4 @@ proc-macro2 = "1.0" | |
quote = "1.0" | ||
syn = { version = "1.0.60", features = ["full"] } | ||
anyhow = "1.0.32" | ||
anchor-syn = { path = "../../syn", version = "0.11.0", features = ["hash"] } | ||
anchor-syn = { path = "../../syn", version = "0.11.1", features = ["hash"] } |
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 = "anchor-attribute-error" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
authors = ["Serum Foundation <[email protected]>"] | ||
repository = "https://github.com/project-serum/anchor" | ||
license = "Apache-2.0" | ||
|
@@ -17,4 +17,4 @@ anchor-debug = ["anchor-syn/anchor-debug"] | |
proc-macro2 = "1.0" | ||
quote = "1.0" | ||
syn = { version = "1.0.60", features = ["full"] } | ||
anchor-syn = { path = "../../syn", version = "0.11.0" } | ||
anchor-syn = { path = "../../syn", version = "0.11.1" } |
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 = "anchor-attribute-event" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
authors = ["Serum Foundation <[email protected]>"] | ||
repository = "https://github.com/project-serum/anchor" | ||
license = "Apache-2.0" | ||
|
@@ -18,4 +18,4 @@ proc-macro2 = "1.0" | |
quote = "1.0" | ||
syn = { version = "1.0.60", features = ["full"] } | ||
anyhow = "1.0.32" | ||
anchor-syn = { path = "../../syn", version = "0.11.0", features = ["hash"] } | ||
anchor-syn = { path = "../../syn", version = "0.11.1", features = ["hash"] } |
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 = "anchor-attribute-interface" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
authors = ["Serum Foundation <[email protected]>"] | ||
repository = "https://github.com/project-serum/anchor" | ||
license = "Apache-2.0" | ||
|
@@ -18,5 +18,5 @@ proc-macro2 = "1.0" | |
quote = "1.0" | ||
syn = { version = "1.0.60", features = ["full"] } | ||
anyhow = "1.0.32" | ||
anchor-syn = { path = "../../syn", version = "0.11.0" } | ||
anchor-syn = { path = "../../syn", version = "0.11.1" } | ||
heck = "0.3.2" |
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 = "anchor-attribute-program" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
authors = ["Serum Foundation <[email protected]>"] | ||
repository = "https://github.com/project-serum/anchor" | ||
license = "Apache-2.0" | ||
|
@@ -18,4 +18,4 @@ proc-macro2 = "1.0" | |
quote = "1.0" | ||
syn = { version = "1.0.60", features = ["full"] } | ||
anyhow = "1.0.32" | ||
anchor-syn = { path = "../../syn", version = "0.11.0" } | ||
anchor-syn = { path = "../../syn", version = "0.11.1" } |
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 = "anchor-attribute-state" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
authors = ["Serum Foundation <[email protected]>"] | ||
repository = "https://github.com/project-serum/anchor" | ||
license = "Apache-2.0" | ||
|
@@ -18,4 +18,4 @@ proc-macro2 = "1.0" | |
quote = "1.0" | ||
syn = { version = "1.0.60", features = ["full"] } | ||
anyhow = "1.0.32" | ||
anchor-syn = { path = "../../syn", version = "0.11.0" } | ||
anchor-syn = { path = "../../syn", version = "0.11.1" } |
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 = "anchor-derive-accounts" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
authors = ["Serum Foundation <[email protected]>"] | ||
repository = "https://github.com/project-serum/anchor" | ||
license = "Apache-2.0" | ||
|
@@ -19,4 +19,4 @@ proc-macro2 = "1.0" | |
quote = "1.0" | ||
syn = { version = "1.0.60", features = ["full"] } | ||
anyhow = "1.0.32" | ||
anchor-syn = { path = "../../syn", version = "0.11.0" } | ||
anchor-syn = { path = "../../syn", version = "0.11.1" } |
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 = "anchor-syn" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
authors = ["Serum Foundation <[email protected]>"] | ||
repository = "https://github.com/project-serum/anchor" | ||
license = "Apache-2.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 = "anchor-spl" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
authors = ["Serum Foundation <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
|
@@ -10,7 +10,7 @@ description = "CPI clients for SPL programs" | |
devnet = [] | ||
|
||
[dependencies] | ||
anchor-lang = { path = "../lang", version = "0.11.0", features = ["derive"] } | ||
anchor-lang = { path = "../lang", version = "0.11.1", features = ["derive"] } | ||
lazy_static = "1.4.0" | ||
serum_dex = { git = "https://github.com/project-serum/serum-dex", tag = "v0.3.1", version = "0.3.1", features = ["no-entrypoint"] } | ||
solana-program = "1.7.4" | ||
|
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