proc-macro2 has been updated (see PR dtolnay/proc-macro2#296) which breaks our build.
After a make update a cargo update -p proc-macro2 --precise 1.0.28 is solving the immediate problem (needs to be done twice: once in the worker part and once in the enclave part)
A fast solution would be to include the cargo update --precise update into our make update but it's not the cleanest solution. This should be looked into a little bit deeper.
proc-macro2 has been updated (see PR dtolnay/proc-macro2#296) which breaks our build.
After a
make updateacargo update -p proc-macro2 --precise 1.0.28is solving the immediate problem (needs to be done twice: once in the worker part and once in the enclave part)A fast solution would be to include the
cargo update --precise updateinto ourmake updatebut it's not the cleanest solution. This should be looked into a little bit deeper.