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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
