thanks! I just tried with toml version. result shows that we can sgx info in Cargo.toml like
```toml [package] name = "xxx" version = "0.1.0+sgx1.1.1" authors = ["Yu Ding <[email protected]>"] edition = "2018" ``` For dependents, it's the same as before: ```toml [dependencies] xxx = { version = "0.1.0" } ``` cargo would warn about unused metadata (`warning: version requirement 0.1.0+sgx for dependency xxx includes semver metadata which will be ignored, removing the metadata is recommended to avoid confusion`) on the following: ```toml xxx = { version = "0.1.0+sgx1.1.1" } ``` -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/apache/incubator-teaclave-sgx-sdk/issues/206#issuecomment-605703254
