Jesper Brynolf
Jesper Brynolf
Thank you for an excellent tool! As I was running this on our integration tests I experienced a crash with the following message: ``` cargo-valgrind: version 2.0.3 XML format mismatch...
I wonder if it is possible to use the ask pattern from inside recv function in actor to make a blocking call to another actor in the same system. Because...
Currently the schedule functions returns an Uuid when created. And as long as this is only stored locally i.e: ```rust let id = ctx.schedule(delay, interv, actor, None, "a scheduled msg".into());...
I have tried to use this with a non_blocking socket and I get some weird error: ``` panicked at 'called `Result::unwrap()` on an `Err` value: Os { code: 11, kind:...
tpm2-tss version: 3.1.0 I was trying to do a little bit of debugging of our rust wrapper that when running Valgrind complained a lot about ```Conditional jump or move depends...
I am having difficulties understanding what type that should actually be used in the TPMS_CONTEXT structure. The Errata: *TPM 2.0 Library Specification 1.38 Errata 1.13, Section 2.19* > . >...
#477 made it possible to build the crate under windows. It would there for be good to have a CI pipeline that tests that this continues to functions as intended....
The 2018 rust edition is getting quite old and it is starting to cause some problems with dependencies so it is time to update it to 2021.
The sized buffers are TPM2B types which can contain data of different length (such as TPM2B_NAME or TPM2B_DIGEST). The current macro handles them well by checking that when the native...
In order to harder enforce MSRV it is possible to set "rust-version" in cargo.toml. This will create a compile time error if one tries to compile the library with a...