This commit is contained in:
Armani Ferrante 2021-01-31 06:32:30 -08:00
parent 115cfea21f
commit 72bf55db2b
No known key found for this signature in database
GPG Key ID: D597A80BCF8E12B7
12 changed files with 39 additions and 35 deletions

18
Cargo.lock generated
View File

@ -51,7 +51,7 @@ dependencies = [
[[package]]
name = "anchor-attribute-access-control"
version = "0.0.0-alpha.0"
version = "0.1.0"
dependencies = [
"anchor-syn",
"anyhow",
@ -62,7 +62,7 @@ dependencies = [
[[package]]
name = "anchor-attribute-account"
version = "0.0.0-alpha.0"
version = "0.1.0"
dependencies = [
"anchor-syn",
"anyhow",
@ -73,7 +73,7 @@ dependencies = [
[[package]]
name = "anchor-attribute-error"
version = "0.0.0-alpha.0"
version = "0.1.0"
dependencies = [
"anchor-syn",
"proc-macro2 1.0.24",
@ -83,7 +83,7 @@ dependencies = [
[[package]]
name = "anchor-attribute-program"
version = "0.0.0-alpha.0"
version = "0.1.0"
dependencies = [
"anchor-syn",
"anyhow",
@ -94,7 +94,7 @@ dependencies = [
[[package]]
name = "anchor-attribute-state"
version = "0.0.0-alpha.0"
version = "0.1.0"
dependencies = [
"anchor-syn",
"anyhow",
@ -139,7 +139,7 @@ dependencies = [
[[package]]
name = "anchor-derive-accounts"
version = "0.0.0-alpha.0"
version = "0.1.0"
dependencies = [
"anchor-syn",
"anyhow",
@ -150,7 +150,7 @@ dependencies = [
[[package]]
name = "anchor-lang"
version = "0.0.0-alpha.0"
version = "0.1.0"
dependencies = [
"anchor-attribute-access-control",
"anchor-attribute-account",
@ -165,7 +165,7 @@ dependencies = [
[[package]]
name = "anchor-spl"
version = "0.0.0-alpha.0"
version = "0.1.0"
dependencies = [
"anchor-lang",
"spl-token 3.0.1",
@ -173,7 +173,7 @@ dependencies = [
[[package]]
name = "anchor-syn"
version = "0.0.0-alpha.0"
version = "0.1.0"
dependencies = [
"anyhow",
"heck",

View File

@ -1,11 +1,13 @@
[package]
name = "anchor-client"
version = "0.1.0"
authors = ["Armani Ferrante <armaniferrante@gmail.com>"]
authors = ["Serum Foundation <foundation@projectserum.com>"]
edition = "2018"
license = "Apache-2.0"
description = "Rust client for Anchor programs"
[dependencies]
anchor-lang = { path = "../lang" }
anchor-lang = { path = "../lang", version = "0.1.0" }
solana-client = "1.5.0"
solana-sdk = "1.5.0"
thiserror = "1.0.20"

View File

@ -1,6 +1,6 @@
[package]
name = "anchor-lang"
version = "0.0.0-alpha.0"
version = "0.1.0"
authors = ["Serum Foundation <foundation@projectserum.com>"]
repository = "https://github.com/project-serum/anchor"
edition = "2018"
@ -12,12 +12,12 @@ derive = []
default = []
[dependencies]
anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.0.0-alpha.0" }
anchor-attribute-account = { path = "./attribute/account", version = "0.0.0-alpha.0" }
anchor-attribute-error = { path = "./attribute/error" }
anchor-attribute-program = { path = "./attribute/program", version = "0.0.0-alpha.0" }
anchor-attribute-state = { path = "./attribute/state", version = "0.0.0-alpha.0" }
anchor-derive-accounts = { path = "./derive/accounts", version = "0.0.0-alpha.0" }
anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.1.0" }
anchor-attribute-account = { path = "./attribute/account", version = "0.1.0" }
anchor-attribute-error = { path = "./attribute/error", version = "0.1.0" }
anchor-attribute-program = { path = "./attribute/program", version = "0.1.0" }
anchor-attribute-state = { path = "./attribute/state", version = "0.1.0" }
anchor-derive-accounts = { path = "./derive/accounts", version = "0.1.0" }
serum-borsh = "0.8.1-serum.1"
solana-program = "=1.5.0"
thiserror = "1.0.20"

View File

@ -1,6 +1,6 @@
[package]
name = "anchor-attribute-access-control"
version = "0.0.0-alpha.0"
version = "0.1.0"
authors = ["Serum Foundation <foundation@projectserum.com>"]
repository = "https://github.com/project-serum/anchor"
license = "Apache-2.0"
@ -15,4 +15,4 @@ proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "=1.0.57", features = ["full"] }
anyhow = "1.0.32"
anchor-syn = { path = "../../syn", version = "0.0.0-alpha.0" }
anchor-syn = { path = "../../syn", version = "0.1.0" }

View File

@ -1,6 +1,6 @@
[package]
name = "anchor-attribute-account"
version = "0.0.0-alpha.0"
version = "0.1.0"
authors = ["Serum Foundation <foundation@projectserum.com>"]
repository = "https://github.com/project-serum/anchor"
license = "Apache-2.0"
@ -15,4 +15,4 @@ proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "=1.0.57", features = ["full"] }
anyhow = "1.0.32"
anchor-syn = { path = "../../syn", version = "0.0.0-alpha.0" }
anchor-syn = { path = "../../syn", version = "0.1.0" }

View File

@ -1,6 +1,6 @@
[package]
name = "anchor-attribute-error"
version = "0.0.0-alpha.0"
version = "0.1.0"
authors = ["Serum Foundation <foundation@projectserum.com>"]
repository = "https://github.com/project-serum/anchor"
license = "Apache-2.0"
@ -14,4 +14,4 @@ proc-macro = true
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "=1.0.57", features = ["full"] }
anchor-syn = { path = "../../syn" }
anchor-syn = { path = "../../syn", version = "0.1.0" }

View File

@ -1,6 +1,6 @@
[package]
name = "anchor-attribute-program"
version = "0.0.0-alpha.0"
version = "0.1.0"
authors = ["Serum Foundation <foundation@projectserum.com>"]
repository = "https://github.com/project-serum/anchor"
license = "Apache-2.0"
@ -15,4 +15,4 @@ proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "=1.0.57", features = ["full"] }
anyhow = "1.0.32"
anchor-syn = { path = "../../syn", version = "0.0.0-alpha.0" }
anchor-syn = { path = "../../syn", version = "0.1.0" }

View File

@ -1,6 +1,6 @@
[package]
name = "anchor-attribute-state"
version = "0.0.0-alpha.0"
version = "0.1.0"
authors = ["Serum Foundation <foundation@projectserum.com>"]
repository = "https://github.com/project-serum/anchor"
license = "Apache-2.0"
@ -15,4 +15,4 @@ proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "=1.0.57", features = ["full"] }
anyhow = "1.0.32"
anchor-syn = { path = "../../syn", version = "0.0.0-alpha.0" }
anchor-syn = { path = "../../syn", version = "0.1.0" }

View File

@ -1,6 +1,6 @@
[package]
name = "anchor-derive-accounts"
version = "0.0.0-alpha.0"
version = "0.1.0"
authors = ["Serum Foundation <foundation@projectserum.com>"]
repository = "https://github.com/project-serum/anchor"
license = "Apache-2.0"
@ -15,4 +15,4 @@ proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "=1.0.57", features = ["full"] }
anyhow = "1.0.32"
anchor-syn = { path = "../../syn", version = "0.0.0-alpha.0" }
anchor-syn = { path = "../../syn", version = "0.1.0" }

View File

@ -1,6 +1,6 @@
[package]
name = "anchor-syn"
version = "0.0.0-alpha.0"
version = "0.1.0"
authors = ["Serum Foundation <foundation@projectserum.com>"]
repository = "https://github.com/project-serum/anchor"
license = "Apache-2.0"

View File

@ -1,9 +1,11 @@
[package]
name = "anchor-spl"
version = "0.0.0-alpha.0"
authors = ["Armani Ferrante <armaniferrante@gmail.com>"]
version = "0.1.0"
authors = ["Serum Foundation <foundation@projectserum.com>"]
edition = "2018"
license = "Apache-2.0"
description = "CPI clients for SPL programs"
[dependencies]
anchor-lang = { path = "../lang", features = ["derive"] }
anchor-lang = { path = "../lang", version = "0.1.0", features = ["derive"] }
spl-token = { version = "3.0.1", features = ["no-entrypoint"] }

View File

@ -1,6 +1,6 @@
{
"name": "@project-serum/anchor",
"version": "0.0.0-alpha.11",
"version": "0.1.0",
"description": "Anchor client",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",