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 f238631  Change the repo address
f238631 is described below

commit f238631bf8265862a666b37a0f9ad5e078c8f808
Author: Mingshen Sun <[email protected]>
AuthorDate: Thu Jun 3 10:51:13 2021 -0700

    Change the repo address
---
 docs/getting-started-with-optee-for-qemu-armv8.md   | 2 +-
 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(+), 47 deletions(-)

diff --git a/docs/getting-started-with-optee-for-qemu-armv8.md 
b/docs/getting-started-with-optee-for-qemu-armv8.md
index 0ff6f9b..68723f6 100644
--- a/docs/getting-started-with-optee-for-qemu-armv8.md
+++ b/docs/getting-started-with-optee-for-qemu-armv8.md
@@ -13,7 +13,7 @@ project.
 To run examples on the QEMU ARMv8 emulator, we need first build OP-TEE for QEMU
 ARMv8. You can install dependencies with this
 
[instruction](https://optee.readthedocs.io/en/latest/building/prerequisites.html)
-or use our 
[Dockerfile](https://github.com/mesalock-linux/rust-optee-trustzone-sdk/blob/master/Dockerfile).
+or use our 
[Dockerfile](https://github.com/apache/incubator-teaclave-trustzone-sdk/blob/master/Dockerfile).
 
 Download OP-TEE for QEMU ARMv8 source code.
 
diff --git a/examples/acipher/host/Cargo.toml b/examples/acipher/host/Cargo.toml
index 2a63971..dca85bb 100644
--- a/examples/acipher/host/Cargo.toml
+++ b/examples/acipher/host/Cargo.toml
@@ -3,7 +3,7 @@ name = "acipher"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/examples/acipher/proto/Cargo.toml 
b/examples/acipher/proto/Cargo.toml
index 67f2733..5cb3a99 100644
--- a/examples/acipher/proto/Cargo.toml
+++ b/examples/acipher/proto/Cargo.toml
@@ -3,7 +3,7 @@ name = "proto"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "Data structures and functions shared by host and TA."
 edition = "2018"
 
diff --git a/examples/acipher/ta/Cargo.toml b/examples/acipher/ta/Cargo.toml
index 87f7955..146ed63 100644
--- a/examples/acipher/ta/Cargo.toml
+++ b/examples/acipher/ta/Cargo.toml
@@ -3,7 +3,7 @@ name = "ta"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/examples/aes/host/Cargo.toml b/examples/aes/host/Cargo.toml
index 759f9af..bd9b20b 100644
--- a/examples/aes/host/Cargo.toml
+++ b/examples/aes/host/Cargo.toml
@@ -3,7 +3,7 @@ name = "aes"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/examples/aes/proto/Cargo.toml b/examples/aes/proto/Cargo.toml
index 67f2733..5cb3a99 100644
--- a/examples/aes/proto/Cargo.toml
+++ b/examples/aes/proto/Cargo.toml
@@ -3,7 +3,7 @@ name = "proto"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "Data structures and functions shared by host and TA."
 edition = "2018"
 
diff --git a/examples/aes/ta/Cargo.toml b/examples/aes/ta/Cargo.toml
index 87f7955..146ed63 100644
--- a/examples/aes/ta/Cargo.toml
+++ b/examples/aes/ta/Cargo.toml
@@ -3,7 +3,7 @@ name = "ta"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/examples/authentication/host/Cargo.toml 
b/examples/authentication/host/Cargo.toml
index 025e7a9..5c04745 100644
--- a/examples/authentication/host/Cargo.toml
+++ b/examples/authentication/host/Cargo.toml
@@ -3,7 +3,7 @@ name = "authentication"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/examples/authentication/proto/Cargo.toml 
b/examples/authentication/proto/Cargo.toml
index 67f2733..5cb3a99 100644
--- a/examples/authentication/proto/Cargo.toml
+++ b/examples/authentication/proto/Cargo.toml
@@ -3,7 +3,7 @@ name = "proto"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "Data structures and functions shared by host and TA."
 edition = "2018"
 
diff --git a/examples/authentication/ta/Cargo.toml 
b/examples/authentication/ta/Cargo.toml
index 87f7955..146ed63 100644
--- a/examples/authentication/ta/Cargo.toml
+++ b/examples/authentication/ta/Cargo.toml
@@ -3,7 +3,7 @@ name = "ta"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/examples/big_int/host/Cargo.toml b/examples/big_int/host/Cargo.toml
index 840d9b1..bfdfa17 100644
--- a/examples/big_int/host/Cargo.toml
+++ b/examples/big_int/host/Cargo.toml
@@ -3,7 +3,7 @@ name = "big_int"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/examples/big_int/proto/Cargo.toml 
b/examples/big_int/proto/Cargo.toml
index 67f2733..5cb3a99 100644
--- a/examples/big_int/proto/Cargo.toml
+++ b/examples/big_int/proto/Cargo.toml
@@ -3,7 +3,7 @@ name = "proto"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "Data structures and functions shared by host and TA."
 edition = "2018"
 
diff --git a/examples/big_int/ta/Cargo.toml b/examples/big_int/ta/Cargo.toml
index 87f7955..146ed63 100644
--- a/examples/big_int/ta/Cargo.toml
+++ b/examples/big_int/ta/Cargo.toml
@@ -3,7 +3,7 @@ name = "ta"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/examples/diffie_hellman/host/Cargo.toml 
b/examples/diffie_hellman/host/Cargo.toml
index b138611..aeb7662 100644
--- a/examples/diffie_hellman/host/Cargo.toml
+++ b/examples/diffie_hellman/host/Cargo.toml
@@ -3,7 +3,7 @@ name = "diffie_hellman"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/examples/diffie_hellman/proto/Cargo.toml 
b/examples/diffie_hellman/proto/Cargo.toml
index 67f2733..5cb3a99 100644
--- a/examples/diffie_hellman/proto/Cargo.toml
+++ b/examples/diffie_hellman/proto/Cargo.toml
@@ -3,7 +3,7 @@ name = "proto"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "Data structures and functions shared by host and TA."
 edition = "2018"
 
diff --git a/examples/diffie_hellman/ta/Cargo.toml 
b/examples/diffie_hellman/ta/Cargo.toml
index 87f7955..146ed63 100644
--- a/examples/diffie_hellman/ta/Cargo.toml
+++ b/examples/diffie_hellman/ta/Cargo.toml
@@ -3,7 +3,7 @@ name = "ta"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/examples/digest/host/Cargo.toml b/examples/digest/host/Cargo.toml
index 9055faf..22a19c3 100644
--- a/examples/digest/host/Cargo.toml
+++ b/examples/digest/host/Cargo.toml
@@ -3,7 +3,7 @@ name = "digest"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/examples/digest/proto/Cargo.toml b/examples/digest/proto/Cargo.toml
index 67f2733..5cb3a99 100644
--- a/examples/digest/proto/Cargo.toml
+++ b/examples/digest/proto/Cargo.toml
@@ -3,7 +3,7 @@ name = "proto"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "Data structures and functions shared by host and TA."
 edition = "2018"
 
diff --git a/examples/digest/ta/Cargo.toml b/examples/digest/ta/Cargo.toml
index 87f7955..146ed63 100644
--- a/examples/digest/ta/Cargo.toml
+++ b/examples/digest/ta/Cargo.toml
@@ -3,7 +3,7 @@ name = "ta"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/examples/hello_world/host/Cargo.toml 
b/examples/hello_world/host/Cargo.toml
index 83daa26..821d479 100644
--- a/examples/hello_world/host/Cargo.toml
+++ b/examples/hello_world/host/Cargo.toml
@@ -3,7 +3,7 @@ name = "hello_world"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/examples/hello_world/proto/Cargo.toml 
b/examples/hello_world/proto/Cargo.toml
index 67f2733..5cb3a99 100644
--- a/examples/hello_world/proto/Cargo.toml
+++ b/examples/hello_world/proto/Cargo.toml
@@ -3,7 +3,7 @@ name = "proto"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "Data structures and functions shared by host and TA."
 edition = "2018"
 
diff --git a/examples/hello_world/ta/Cargo.toml 
b/examples/hello_world/ta/Cargo.toml
index 87f7955..146ed63 100644
--- a/examples/hello_world/ta/Cargo.toml
+++ b/examples/hello_world/ta/Cargo.toml
@@ -3,7 +3,7 @@ name = "ta"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/examples/hotp/host/Cargo.toml b/examples/hotp/host/Cargo.toml
index 1d3e531..64dc73a 100644
--- a/examples/hotp/host/Cargo.toml
+++ b/examples/hotp/host/Cargo.toml
@@ -3,7 +3,7 @@ name = "hotp"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/examples/hotp/proto/Cargo.toml b/examples/hotp/proto/Cargo.toml
index 0351bc1..d681148 100644
--- a/examples/hotp/proto/Cargo.toml
+++ b/examples/hotp/proto/Cargo.toml
@@ -3,7 +3,7 @@ name = "proto"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "Data structures and functions shared by host and TA."
 edition = "2018"
 
diff --git a/examples/hotp/ta/Cargo.toml b/examples/hotp/ta/Cargo.toml
index 87f7955..146ed63 100644
--- a/examples/hotp/ta/Cargo.toml
+++ b/examples/hotp/ta/Cargo.toml
@@ -3,7 +3,7 @@ name = "ta"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/examples/message_passing_interface/host/Cargo.toml 
b/examples/message_passing_interface/host/Cargo.toml
index e9c920e..f52c080 100644
--- a/examples/message_passing_interface/host/Cargo.toml
+++ b/examples/message_passing_interface/host/Cargo.toml
@@ -3,7 +3,7 @@ name = "message_passing_interface"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/examples/message_passing_interface/proto/Cargo.toml 
b/examples/message_passing_interface/proto/Cargo.toml
index f8914db..0da7f12 100644
--- a/examples/message_passing_interface/proto/Cargo.toml
+++ b/examples/message_passing_interface/proto/Cargo.toml
@@ -3,7 +3,7 @@ name = "proto"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "Data structures and functions shared by host and TA."
 edition = "2018"
 
diff --git a/examples/message_passing_interface/ta/Cargo.toml 
b/examples/message_passing_interface/ta/Cargo.toml
index 6cf416f..fdf55a2 100644
--- a/examples/message_passing_interface/ta/Cargo.toml
+++ b/examples/message_passing_interface/ta/Cargo.toml
@@ -3,7 +3,7 @@ name = "ta"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/examples/random/host/Cargo.toml b/examples/random/host/Cargo.toml
index 948e7ef..49f8e58 100644
--- a/examples/random/host/Cargo.toml
+++ b/examples/random/host/Cargo.toml
@@ -3,7 +3,7 @@ name = "random"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/examples/random/proto/Cargo.toml b/examples/random/proto/Cargo.toml
index 67f2733..5cb3a99 100644
--- a/examples/random/proto/Cargo.toml
+++ b/examples/random/proto/Cargo.toml
@@ -3,7 +3,7 @@ name = "proto"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "Data structures and functions shared by host and TA."
 edition = "2018"
 
diff --git a/examples/random/ta/Cargo.toml b/examples/random/ta/Cargo.toml
index 87f7955..146ed63 100644
--- a/examples/random/ta/Cargo.toml
+++ b/examples/random/ta/Cargo.toml
@@ -3,7 +3,7 @@ name = "ta"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/examples/secure_storage/host/Cargo.toml 
b/examples/secure_storage/host/Cargo.toml
index 734a0ce..2f35b13 100644
--- a/examples/secure_storage/host/Cargo.toml
+++ b/examples/secure_storage/host/Cargo.toml
@@ -3,7 +3,7 @@ name = "secure_storage"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/examples/secure_storage/proto/Cargo.toml 
b/examples/secure_storage/proto/Cargo.toml
index 67f2733..5cb3a99 100644
--- a/examples/secure_storage/proto/Cargo.toml
+++ b/examples/secure_storage/proto/Cargo.toml
@@ -3,7 +3,7 @@ name = "proto"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "Data structures and functions shared by host and TA."
 edition = "2018"
 
diff --git a/examples/secure_storage/ta/Cargo.toml 
b/examples/secure_storage/ta/Cargo.toml
index 87f7955..146ed63 100644
--- a/examples/secure_storage/ta/Cargo.toml
+++ b/examples/secure_storage/ta/Cargo.toml
@@ -3,7 +3,7 @@ name = "ta"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/examples/serde/host/Cargo.toml b/examples/serde/host/Cargo.toml
index 78d5190..d0691b7 100644
--- a/examples/serde/host/Cargo.toml
+++ b/examples/serde/host/Cargo.toml
@@ -3,7 +3,7 @@ name = "serde"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/examples/serde/proto/Cargo.toml b/examples/serde/proto/Cargo.toml
index 0351bc1..d681148 100644
--- a/examples/serde/proto/Cargo.toml
+++ b/examples/serde/proto/Cargo.toml
@@ -3,7 +3,7 @@ name = "proto"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "Data structures and functions shared by host and TA."
 edition = "2018"
 
diff --git a/examples/serde/ta/Cargo.toml b/examples/serde/ta/Cargo.toml
index 1d3aa22..ecfbb52 100644
--- a/examples/serde/ta/Cargo.toml
+++ b/examples/serde/ta/Cargo.toml
@@ -3,7 +3,7 @@ name = "ta"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/examples/time/host/Cargo.toml b/examples/time/host/Cargo.toml
index 00a35c0..3d0b3f2 100644
--- a/examples/time/host/Cargo.toml
+++ b/examples/time/host/Cargo.toml
@@ -3,7 +3,7 @@ name = "time"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/examples/time/proto/Cargo.toml b/examples/time/proto/Cargo.toml
index 67f2733..5cb3a99 100644
--- a/examples/time/proto/Cargo.toml
+++ b/examples/time/proto/Cargo.toml
@@ -3,7 +3,7 @@ name = "proto"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "Data structures and functions shared by host and TA."
 edition = "2018"
 
diff --git a/examples/time/ta/Cargo.toml b/examples/time/ta/Cargo.toml
index 87f7955..146ed63 100644
--- a/examples/time/ta/Cargo.toml
+++ b/examples/time/ta/Cargo.toml
@@ -3,7 +3,7 @@ name = "ta"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "An example of Rust OP-TEE TrustZone SDK."
 edition = "2018"
 
diff --git a/optee-teec/Cargo.toml b/optee-teec/Cargo.toml
index f0e0aa7..e3181a6 100644
--- a/optee-teec/Cargo.toml
+++ b/optee-teec/Cargo.toml
@@ -3,7 +3,7 @@ name = "optee-teec"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "TEE client API."
 edition = "2018"
 
diff --git a/optee-teec/optee-teec-sys/Cargo.toml 
b/optee-teec/optee-teec-sys/Cargo.toml
index 8afd222..fe219cb 100644
--- a/optee-teec/optee-teec-sys/Cargo.toml
+++ b/optee-teec/optee-teec-sys/Cargo.toml
@@ -3,7 +3,7 @@ name = "optee-teec-sys"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "Native bindings to the libteec library."
 edition = "2018"
 
diff --git a/optee-teec/systest/Cargo.toml b/optee-teec/systest/Cargo.toml
index 1482e78..3871dbe 100644
--- a/optee-teec/systest/Cargo.toml
+++ b/optee-teec/systest/Cargo.toml
@@ -3,7 +3,7 @@ name = "systest"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "Automatic testing of FFI bindings for the libteec library."
 edition = "2018"
 
diff --git a/optee-utee/Cargo.toml b/optee-utee/Cargo.toml
index eafa87d..b3666fd 100644
--- a/optee-utee/Cargo.toml
+++ b/optee-utee/Cargo.toml
@@ -3,7 +3,7 @@ name = "optee-utee"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "TEE internal core API."
 edition = "2018"
 
diff --git a/optee-utee/macros/Cargo.toml b/optee-utee/macros/Cargo.toml
index ea068cf..933a322 100644
--- a/optee-utee/macros/Cargo.toml
+++ b/optee-utee/macros/Cargo.toml
@@ -3,7 +3,7 @@ name = "optee-utee-macros"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "Procedural macros for TEE internal core API."
 edition = "2018"
 
diff --git a/optee-utee/optee-utee-sys/Cargo.toml 
b/optee-utee/optee-utee-sys/Cargo.toml
index 849d8ea..e9cefa5 100644
--- a/optee-utee/optee-utee-sys/Cargo.toml
+++ b/optee-utee/optee-utee-sys/Cargo.toml
@@ -3,7 +3,7 @@ name = "optee-utee-sys"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "Native bindings to the libutee library."
 edition = "2018"
 
diff --git a/optee-utee/systest/Cargo.toml b/optee-utee/systest/Cargo.toml
index f4bfb70..c49035d 100644
--- a/optee-utee/systest/Cargo.toml
+++ b/optee-utee/systest/Cargo.toml
@@ -3,7 +3,7 @@ name = "systest"
 version = "0.1.0"
 authors = ["Teaclave Contributors <[email protected]>"]
 license = "Apache-2.0"
-repository = "https://github.com/mesalock-linux/rust-optee-trustzone-sdk.git";
+repository = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git";
 description = "Automatic testing of FFI bindings for the libutee library."
 edition = "2018"
 

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to