ivila commented on PR #150: URL: https://github.com/apache/incubator-teaclave-trustzone-sdk/pull/150#issuecomment-2507177094
Actually during my development, I will use git path for teaclave dependencies, it's more convenient as can be use cross my team (and we use no_std). For example, when I want to use optee-teec, I just type the following: ``` shell cargo add optee_teec --git https://github.com/apache/incubator-teaclave-trustzone-sdk.git --branch main ``` And in cargo it will: ```toml [package] name = "demo" version = "0.1.0" edition = "2021" [dependencies] optee-teec = { git = "https://github.com/apache/incubator-teaclave-trustzone-sdk.git", branch = "main", version = "0.2.0" } ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@teaclave.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@teaclave.apache.org For additional commands, e-mail: dev-h...@teaclave.apache.org