Xynnn_
Xynnn_
Oh. I faced some issue related to this issue. To impl https://github.com/kata-containers/kata-containers/pull/9382, the `anyhow` crate of underlying `image-rs` is newer than the [fixed 1.0.58](https://github.com/kata-containers/kata-containers/blob/main/src/agent/Cargo.toml#L60-L65) thus the compilation cannot pass when...
yes, I have experienced benefits from `thiserror` a lot. Seems that a short term workaround would be set `RUST_BACKTRACE=1 RUST_LIB_BACKTRACE=0` in `Makefile`. Long term goal is to replace `anyhow` with...
Yeah I guess @jodh-intel did a good summary for benefits of `thiserror`. The issue we are facing now is the unit tests inside kata code where concrete error information/type are...
I temporarily add `RUST_LIB_BACKTRACE=0` to fix this in PR #9382 and it works fine.
> @Xynnn007 a bit offtopic but is there a reason why `CoCo` tokenverifier could not use `jsonwebtoken` also? AFAUI, we could have a single verifier that just understands local pem/jwks...
@mythi it is https://github.com/confidential-containers/trustee/pull/458#discussion_r1730697409
Yes we once made a PR for this, see https://github.com/confidential-containers/trustee/pull/258#issuecomment-1871733541 Currently for TDX the bottle neck is underlying `intel-tee-quote-verification-rs` crate. For SNP like platforms, it's performance is directly proportional to...
> Maybe add a negative test? or even more tests to spec out the log format a bit more (like can we use unicode/emojis in domain and operation, is `"my...
I think this makes sense in some cases where attesters send fresh evidence along with signed reference values. At the same time, we should also offer enough flexibility for users...
@deeglaze Have you ever considered another way, s.t. add Google [attester](https://github.com/confidential-containers/guest-components/tree/main/attestation-agent/attester/src)/[verifier](https://github.com/confidential-containers/trustee/tree/main/deps/verifier/src) plugins in both AA and AS? In this way, you can implement any claims of the attester environment, thus...