sytsereitsma / mdbook-plantuml

mdBook preprocessor to render PlantUML diagrams to png images in the book output directory
MIT License
76 stars 14 forks source link

use rustls as TLS backend #70

Closed danieleades closed 1 year ago

danieleades commented 1 year ago

closes #69

this has the advantage of not requiring the openSSL libraries to be present during the build. Rustls is mostly Rust (though there are still some C and Assembly crypto libraries deep in the stack)

Rustls is also more performant than openSSL, though i don't imagine that's a huge consideration for this crate.

sytsereitsma commented 1 year ago

Appears to remove dependencies on libssl, libcrypto and libz, which is fine by me. Can you update the Building and installing on Linux section in the README.md? I think it can be removed altogether.

danieleades commented 1 year ago

Appears to remove dependencies on libssl, libcrypto and libz, which is fine by me. Can you update the Building and installing on Linux section in the README.md? I think it can be removed altogether.

ah nice. done.