You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@teaclave.apache.org by ms...@apache.org on 2021/05/28 17:49:30 UTC

[incubator-teaclave-trustzone-sdk] branch master updated: Unify authors in the Cargo.toml file

This is an automated email from the ASF dual-hosted git repository.

mssun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-teaclave-trustzone-sdk.git


The following commit(s) were added to refs/heads/master by this push:
     new a58aea3  Unify authors in the Cargo.toml file
a58aea3 is described below

commit a58aea322943d8ad18cce6218c755b708a4d8afb
Author: Mingshen Sun <bo...@mssun.me>
AuthorDate: Fri May 28 10:49:03 2021 -0700

    Unify authors in the Cargo.toml file
---
 Dockerfile                                          | 1 +
 examples/acipher/host/Cargo.toml                    | 2 +-
 examples/acipher/proto/Cargo.toml                   | 2 +-
 examples/acipher/ta/Cargo.toml                      | 2 +-
 examples/aes/host/Cargo.toml                        | 2 +-
 examples/aes/proto/Cargo.toml                       | 2 +-
 examples/aes/ta/Cargo.toml                          | 2 +-
 examples/authentication/host/Cargo.toml             | 2 +-
 examples/authentication/proto/Cargo.toml            | 2 +-
 examples/authentication/ta/Cargo.toml               | 2 +-
 examples/big_int/host/Cargo.toml                    | 2 +-
 examples/big_int/proto/Cargo.toml                   | 2 +-
 examples/big_int/ta/Cargo.toml                      | 2 +-
 examples/diffie_hellman/host/Cargo.toml             | 2 +-
 examples/diffie_hellman/proto/Cargo.toml            | 2 +-
 examples/diffie_hellman/ta/Cargo.toml               | 2 +-
 examples/digest/host/Cargo.toml                     | 2 +-
 examples/digest/proto/Cargo.toml                    | 2 +-
 examples/digest/ta/Cargo.toml                       | 2 +-
 examples/hello_world/host/Cargo.toml                | 2 +-
 examples/hello_world/proto/Cargo.toml               | 2 +-
 examples/hello_world/ta/Cargo.toml                  | 2 +-
 examples/hotp/host/Cargo.toml                       | 2 +-
 examples/hotp/proto/Cargo.toml                      | 2 +-
 examples/hotp/ta/Cargo.toml                         | 2 +-
 examples/message_passing_interface/host/Cargo.toml  | 2 +-
 examples/message_passing_interface/proto/Cargo.toml | 2 +-
 examples/message_passing_interface/ta/Cargo.toml    | 2 +-
 examples/random/host/Cargo.toml                     | 2 +-
 examples/random/proto/Cargo.toml                    | 2 +-
 examples/random/ta/Cargo.toml                       | 2 +-
 examples/secure_storage/host/Cargo.toml             | 2 +-
 examples/secure_storage/proto/Cargo.toml            | 2 +-
 examples/secure_storage/ta/Cargo.toml               | 2 +-
 examples/serde/host/Cargo.toml                      | 2 +-
 examples/serde/proto/Cargo.toml                     | 2 +-
 examples/serde/ta/Cargo.toml                        | 2 +-
 examples/time/host/Cargo.toml                       | 2 +-
 examples/time/proto/Cargo.toml                      | 2 +-
 examples/time/ta/Cargo.toml                         | 2 +-
 optee-teec/Cargo.toml                               | 2 +-
 optee-teec/optee-teec-sys/Cargo.toml                | 2 +-
 optee-teec/systest/Cargo.toml                       | 2 +-
 optee-utee/Cargo.toml                               | 2 +-
 optee-utee/macros/Cargo.toml                        | 2 +-
 optee-utee/optee-utee-sys/Cargo.toml                | 2 +-
 optee-utee/systest/Cargo.toml                       | 2 +-
 47 files changed, 47 insertions(+), 46 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index fc257d1..c26fed2 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,5 @@
 FROM ubuntu:16.04
+MAINTAINER Teaclave Contributors <de...@teaclave.apache.org>
 
 RUN dpkg --add-architecture i386
 RUN apt-get update && \
diff --git a/examples/acipher/host/Cargo.toml b/examples/acipher/host/Cargo.toml
index 4339eda..2a63971 100644
--- a/examples/acipher/host/Cargo.toml
+++ b/examples/acipher/host/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "acipher"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/examples/acipher/proto/Cargo.toml b/examples/acipher/proto/Cargo.toml
index d3a8108..67f2733 100644
--- a/examples/acipher/proto/Cargo.toml
+++ b/examples/acipher/proto/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "proto"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "Data structures and functions shared by host and TA."
diff --git a/examples/acipher/ta/Cargo.toml b/examples/acipher/ta/Cargo.toml
index 6ac4e46..87f7955 100644
--- a/examples/acipher/ta/Cargo.toml
+++ b/examples/acipher/ta/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "ta"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/examples/aes/host/Cargo.toml b/examples/aes/host/Cargo.toml
index 7816bdc..759f9af 100644
--- a/examples/aes/host/Cargo.toml
+++ b/examples/aes/host/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "aes"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/examples/aes/proto/Cargo.toml b/examples/aes/proto/Cargo.toml
index d3a8108..67f2733 100644
--- a/examples/aes/proto/Cargo.toml
+++ b/examples/aes/proto/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "proto"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "Data structures and functions shared by host and TA."
diff --git a/examples/aes/ta/Cargo.toml b/examples/aes/ta/Cargo.toml
index 6ac4e46..87f7955 100644
--- a/examples/aes/ta/Cargo.toml
+++ b/examples/aes/ta/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "ta"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/examples/authentication/host/Cargo.toml b/examples/authentication/host/Cargo.toml
index 5aec1f6..025e7a9 100644
--- a/examples/authentication/host/Cargo.toml
+++ b/examples/authentication/host/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "authentication"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/examples/authentication/proto/Cargo.toml b/examples/authentication/proto/Cargo.toml
index d3a8108..67f2733 100644
--- a/examples/authentication/proto/Cargo.toml
+++ b/examples/authentication/proto/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "proto"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "Data structures and functions shared by host and TA."
diff --git a/examples/authentication/ta/Cargo.toml b/examples/authentication/ta/Cargo.toml
index 6ac4e46..87f7955 100644
--- a/examples/authentication/ta/Cargo.toml
+++ b/examples/authentication/ta/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "ta"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/examples/big_int/host/Cargo.toml b/examples/big_int/host/Cargo.toml
index b6974cf..840d9b1 100644
--- a/examples/big_int/host/Cargo.toml
+++ b/examples/big_int/host/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "big_int"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/examples/big_int/proto/Cargo.toml b/examples/big_int/proto/Cargo.toml
index d3a8108..67f2733 100644
--- a/examples/big_int/proto/Cargo.toml
+++ b/examples/big_int/proto/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "proto"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "Data structures and functions shared by host and TA."
diff --git a/examples/big_int/ta/Cargo.toml b/examples/big_int/ta/Cargo.toml
index 6ac4e46..87f7955 100644
--- a/examples/big_int/ta/Cargo.toml
+++ b/examples/big_int/ta/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "ta"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/examples/diffie_hellman/host/Cargo.toml b/examples/diffie_hellman/host/Cargo.toml
index 5d665b8..b138611 100644
--- a/examples/diffie_hellman/host/Cargo.toml
+++ b/examples/diffie_hellman/host/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "diffie_hellman"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/examples/diffie_hellman/proto/Cargo.toml b/examples/diffie_hellman/proto/Cargo.toml
index d3a8108..67f2733 100644
--- a/examples/diffie_hellman/proto/Cargo.toml
+++ b/examples/diffie_hellman/proto/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "proto"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "Data structures and functions shared by host and TA."
diff --git a/examples/diffie_hellman/ta/Cargo.toml b/examples/diffie_hellman/ta/Cargo.toml
index 6ac4e46..87f7955 100644
--- a/examples/diffie_hellman/ta/Cargo.toml
+++ b/examples/diffie_hellman/ta/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "ta"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/examples/digest/host/Cargo.toml b/examples/digest/host/Cargo.toml
index 9903673..9055faf 100644
--- a/examples/digest/host/Cargo.toml
+++ b/examples/digest/host/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "digest"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/examples/digest/proto/Cargo.toml b/examples/digest/proto/Cargo.toml
index d3a8108..67f2733 100644
--- a/examples/digest/proto/Cargo.toml
+++ b/examples/digest/proto/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "proto"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "Data structures and functions shared by host and TA."
diff --git a/examples/digest/ta/Cargo.toml b/examples/digest/ta/Cargo.toml
index 6ac4e46..87f7955 100644
--- a/examples/digest/ta/Cargo.toml
+++ b/examples/digest/ta/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "ta"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/examples/hello_world/host/Cargo.toml b/examples/hello_world/host/Cargo.toml
index c1374b2..83daa26 100644
--- a/examples/hello_world/host/Cargo.toml
+++ b/examples/hello_world/host/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "hello_world"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/examples/hello_world/proto/Cargo.toml b/examples/hello_world/proto/Cargo.toml
index d3a8108..67f2733 100644
--- a/examples/hello_world/proto/Cargo.toml
+++ b/examples/hello_world/proto/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "proto"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "Data structures and functions shared by host and TA."
diff --git a/examples/hello_world/ta/Cargo.toml b/examples/hello_world/ta/Cargo.toml
index 6ac4e46..87f7955 100644
--- a/examples/hello_world/ta/Cargo.toml
+++ b/examples/hello_world/ta/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "ta"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/examples/hotp/host/Cargo.toml b/examples/hotp/host/Cargo.toml
index 6accf48..1d3e531 100644
--- a/examples/hotp/host/Cargo.toml
+++ b/examples/hotp/host/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "hotp"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/examples/hotp/proto/Cargo.toml b/examples/hotp/proto/Cargo.toml
index 8924de7..0351bc1 100644
--- a/examples/hotp/proto/Cargo.toml
+++ b/examples/hotp/proto/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "proto"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "Data structures and functions shared by host and TA."
diff --git a/examples/hotp/ta/Cargo.toml b/examples/hotp/ta/Cargo.toml
index 6ac4e46..87f7955 100644
--- a/examples/hotp/ta/Cargo.toml
+++ b/examples/hotp/ta/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "ta"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/examples/message_passing_interface/host/Cargo.toml b/examples/message_passing_interface/host/Cargo.toml
index 7b579dc..e9c920e 100644
--- a/examples/message_passing_interface/host/Cargo.toml
+++ b/examples/message_passing_interface/host/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "message_passing_interface"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/examples/message_passing_interface/proto/Cargo.toml b/examples/message_passing_interface/proto/Cargo.toml
index c6a4e52..f8914db 100644
--- a/examples/message_passing_interface/proto/Cargo.toml
+++ b/examples/message_passing_interface/proto/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "proto"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "Data structures and functions shared by host and TA."
diff --git a/examples/message_passing_interface/ta/Cargo.toml b/examples/message_passing_interface/ta/Cargo.toml
index eb6c6f9..6cf416f 100644
--- a/examples/message_passing_interface/ta/Cargo.toml
+++ b/examples/message_passing_interface/ta/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "ta"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/examples/random/host/Cargo.toml b/examples/random/host/Cargo.toml
index 8048371..948e7ef 100644
--- a/examples/random/host/Cargo.toml
+++ b/examples/random/host/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "random"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/examples/random/proto/Cargo.toml b/examples/random/proto/Cargo.toml
index d3a8108..67f2733 100644
--- a/examples/random/proto/Cargo.toml
+++ b/examples/random/proto/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "proto"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "Data structures and functions shared by host and TA."
diff --git a/examples/random/ta/Cargo.toml b/examples/random/ta/Cargo.toml
index 6ac4e46..87f7955 100644
--- a/examples/random/ta/Cargo.toml
+++ b/examples/random/ta/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "ta"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/examples/secure_storage/host/Cargo.toml b/examples/secure_storage/host/Cargo.toml
index c160990..734a0ce 100644
--- a/examples/secure_storage/host/Cargo.toml
+++ b/examples/secure_storage/host/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "secure_storage"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/examples/secure_storage/proto/Cargo.toml b/examples/secure_storage/proto/Cargo.toml
index d3a8108..67f2733 100644
--- a/examples/secure_storage/proto/Cargo.toml
+++ b/examples/secure_storage/proto/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "proto"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "Data structures and functions shared by host and TA."
diff --git a/examples/secure_storage/ta/Cargo.toml b/examples/secure_storage/ta/Cargo.toml
index 6ac4e46..87f7955 100644
--- a/examples/secure_storage/ta/Cargo.toml
+++ b/examples/secure_storage/ta/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "ta"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/examples/serde/host/Cargo.toml b/examples/serde/host/Cargo.toml
index cc63b42..78d5190 100644
--- a/examples/serde/host/Cargo.toml
+++ b/examples/serde/host/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "serde"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/examples/serde/proto/Cargo.toml b/examples/serde/proto/Cargo.toml
index 8924de7..0351bc1 100644
--- a/examples/serde/proto/Cargo.toml
+++ b/examples/serde/proto/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "proto"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "Data structures and functions shared by host and TA."
diff --git a/examples/serde/ta/Cargo.toml b/examples/serde/ta/Cargo.toml
index 58b76a3..1d3aa22 100644
--- a/examples/serde/ta/Cargo.toml
+++ b/examples/serde/ta/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "ta"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/examples/time/host/Cargo.toml b/examples/time/host/Cargo.toml
index 36259ca..00a35c0 100644
--- a/examples/time/host/Cargo.toml
+++ b/examples/time/host/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "time"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/examples/time/proto/Cargo.toml b/examples/time/proto/Cargo.toml
index d3a8108..67f2733 100644
--- a/examples/time/proto/Cargo.toml
+++ b/examples/time/proto/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "proto"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "Data structures and functions shared by host and TA."
diff --git a/examples/time/ta/Cargo.toml b/examples/time/ta/Cargo.toml
index 6ac4e46..87f7955 100644
--- a/examples/time/ta/Cargo.toml
+++ b/examples/time/ta/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "ta"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "An example of Rust OP-TEE TrustZone SDK."
diff --git a/optee-teec/Cargo.toml b/optee-teec/Cargo.toml
index bd878e7..f0e0aa7 100644
--- a/optee-teec/Cargo.toml
+++ b/optee-teec/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "optee-teec"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "TEE client API."
diff --git a/optee-teec/optee-teec-sys/Cargo.toml b/optee-teec/optee-teec-sys/Cargo.toml
index 75c95f7..8afd222 100644
--- a/optee-teec/optee-teec-sys/Cargo.toml
+++ b/optee-teec/optee-teec-sys/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "optee-teec-sys"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "Native bindings to the libteec library."
diff --git a/optee-teec/systest/Cargo.toml b/optee-teec/systest/Cargo.toml
index 55254a3..1482e78 100644
--- a/optee-teec/systest/Cargo.toml
+++ b/optee-teec/systest/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "systest"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "Automatic testing of FFI bindings for the libteec library."
diff --git a/optee-utee/Cargo.toml b/optee-utee/Cargo.toml
index 7a90615..eafa87d 100644
--- a/optee-utee/Cargo.toml
+++ b/optee-utee/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "optee-utee"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "TEE internal core API."
diff --git a/optee-utee/macros/Cargo.toml b/optee-utee/macros/Cargo.toml
index 2a4e629..ea068cf 100644
--- a/optee-utee/macros/Cargo.toml
+++ b/optee-utee/macros/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "optee-utee-macros"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "Procedural macros for TEE internal core API."
diff --git a/optee-utee/optee-utee-sys/Cargo.toml b/optee-utee/optee-utee-sys/Cargo.toml
index ab79da5..849d8ea 100644
--- a/optee-utee/optee-utee-sys/Cargo.toml
+++ b/optee-utee/optee-utee-sys/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "optee-utee-sys"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "Native bindings to the libutee library."
diff --git a/optee-utee/systest/Cargo.toml b/optee-utee/systest/Cargo.toml
index 5b234f2..f4bfb70 100644
--- a/optee-utee/systest/Cargo.toml
+++ b/optee-utee/systest/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "systest"
 version = "0.1.0"
-authors = ["The Rust OP-TEE TrustZone SDK Project Developers"]
+authors = ["Teaclave Contributors <de...@teaclave.apache.org>"]
 license = "Apache-2.0"
 repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git"
 description = "Automatic testing of FFI bindings for the libutee library."

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@teaclave.apache.org
For additional commands, e-mail: commits-help@teaclave.apache.org