ctm / mb2-doc

Mb2, poker software
https://devctm.com
7 stars 2 forks source link

rustls-pemfile is out of date #1252

Closed ctm closed 9 months ago

ctm commented 9 months ago

Upgrade to rustls-pemfile 2.0.0.

2.0.0 is not backwardly compatible, so our code will need a tiny tweak.

ctm commented 9 months ago

Deployed and tested.

FWIW, there's an intermediate step where two different data structures need to be converted to Vec<u8> which means the usual "if it compiles, it runs" heuristic didn't apply. Luckily, it did indeed run properly on my first attempt.

Whee!