Selaa lähdekoodia

Set crate metadata

Armani Ferrante 4 vuotta sitten
vanhempi
sitoutus
d068b5cf10

+ 4 - 2
Cargo.toml

@@ -1,9 +1,11 @@
 [package]
 name = "anchor-lang"
 version = "0.0.0-alpha.0"
-description = ""
-repository = "https://github.com/project-serum/serum-dex"
+authors = ["Serum Foundation <foundation@projectserum.com>"]
+repository = "https://github.com/project-serum/anchor"
 edition = "2018"
+license = "Apache-2.0"
+description = "Solana Sealevel eDSL"
 
 [features]
 derive = []

+ 4 - 1
attribute/access-control/Cargo.toml

@@ -1,7 +1,10 @@
 [package]
 name = "anchor-attribute-access-control"
 version = "0.0.0-alpha.0"
-authors = ["armaniferrante <armaniferrante@gmail.com>"]
+authors = ["Serum Foundation <foundation@projectserum.com>"]
+repository = "https://github.com/project-serum/anchor"
+license = "Apache-2.0"
+description = "Anchor attribute macro for instruction access control"
 edition = "2018"
 
 [lib]

+ 4 - 1
attribute/account/Cargo.toml

@@ -1,7 +1,10 @@
 [package]
 name = "anchor-attribute-account"
 version = "0.0.0-alpha.0"
-authors = ["armaniferrante <armaniferrante@gmail.com>"]
+authors = ["Serum Foundation <foundation@projectserum.com>"]
+repository = "https://github.com/project-serum/anchor"
+license = "Apache-2.0"
+description = "Anchor attribute macro for defining an account"
 edition = "2018"
 
 [lib]

+ 4 - 1
attribute/program/Cargo.toml

@@ -1,7 +1,10 @@
 [package]
 name = "anchor-attribute-program"
 version = "0.0.0-alpha.0"
-authors = ["armaniferrante <armaniferrante@gmail.com>"]
+authors = ["Serum Foundation <foundation@projectserum.com>"]
+repository = "https://github.com/project-serum/anchor"
+license = "Apache-2.0"
+description = "Anchor attribute macro for defining a program"
 edition = "2018"
 
 [lib]

+ 4 - 1
derive/accounts/Cargo.toml

@@ -1,7 +1,10 @@
 [package]
 name = "anchor-derive-accounts"
 version = "0.0.0-alpha.0"
-authors = ["armaniferrante <armaniferrante@gmail.com>"]
+authors = ["Serum Foundation <foundation@projectserum.com>"]
+repository = "https://github.com/project-serum/anchor"
+license = "Apache-2.0"
+description = "Anchor Derive macro for accounts"
 edition = "2018"
 
 [lib]

+ 4 - 1
syn/Cargo.toml

@@ -1,7 +1,10 @@
 [package]
 name = "anchor-syn"
 version = "0.0.0-alpha.0"
-authors = ["armaniferrante <armaniferrante@gmail.com>"]
+authors = ["Serum Foundation <foundation@projectserum.com>"]
+repository = "https://github.com/project-serum/anchor"
+license = "Apache-2.0"
+description = "Anchor syntax parsing and code generation tools"
 edition = "2018"
 
 [features]