Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace data-encoding with base64 #375

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

serprex
Copy link

@serprex serprex commented Aug 28, 2023

data-encoding 2.5.0 raises their MSRV to 1.70,
meanwhile base64 has 0.21.3 reduced MSRV to 1.48 in order to be compatible with Debian Bullseye

ia0/data-encoding#77
marshallpierce/rust-base64#239
marshallpierce/rust-base64#246

This also attempts to reduce dependencies for crates depending on both hyper & tungstenite-rs where headers/postgres-protocol/rustls-pemfile use base64 0.21

data-encoding 2.5.0 raises their MSRV to 1.70,
meanwhile base64 has 0.21.3 reduced MSRV to 1.57 in order to be compatible with Debian Bullseye
@Dushistov
Copy link
Contributor

I was just about to make the same pull request. The reqwest crate has the dependency for base64. And two base64 crates in dependency tree is look as overkill.
May be it is time to reconsider decision made in #330 ?

@daniel-abramov
Copy link
Member

daniel-abramov commented Nov 8, 2023

Maybe you're right. Maybe we should give it a try, in the worst case (if there are strong reasons not to use it), we can always get back to the data-encoding. From what I can currently see, base64 is not that more complex to use than data-encoding. I personally don't have a strong opinion. @sdroege, given the reasoning above, would you agree that base64 would be a better fit than data-encoding for now? (if so, I would be glad to merge this PR and release a new version)

@sdroege
Copy link
Contributor

sdroege commented Nov 8, 2023

Personally I'm not going to touch anything related to the base64 crate but that's your decision to make :)

If the only problem is the MSRV then I would get in touch with the maintainer first, but also managing a low MSRV is practically impossible nowadays with the lack of support for it in cargo so... 🤷‍♂️ That data-encoding has raised the MSRV is actually only because cargo doesn't support handling MSRV, from what I can see. proc-macro2 has raised its MSRV but data-encoding does not use any newer versions of it and would still work fine with the older version, just that cargo will automatically select the latest version unless you have a carefully manually managed Cargo.lock. IMHO the change in data-encoding to raise the MSRV is wrong and misguided and instead this should be raised (again) with the cargo maintainers.

That reqwest is using base64 would also make it a solution to switch reqwest over to data-encoding if that's the only concern.

@sdroege
Copy link
Contributor

sdroege commented Nov 8, 2023

I've added a comment about that to the data-encoding PR.

@sdroege
Copy link
Contributor

sdroege commented Nov 8, 2023

Also, of course, in extension, tungstenite works fine with data-encoding < 2.5.0 too and the only reason why there are complaints now is because cargo doesn't handle MSRV in any meaningful way.

This is not even a problem in the initially mentioned case because Debian bullseye will not ship the latest proc-macro2 version or data-encoding >= 2.5.0 anyway, so you have to do updates yourself to get into the situation where a newer Rust toolchain is required and then you can also update your toolchain the same way.

@Dushistov
Copy link
Contributor

This is optional dependency. So if some users prefer to use data-encoding, while others base64,
may be we can keep both cases, and to call panic! at compile time, if user enable them at the same time.

@serprex
Copy link
Author

serprex commented Nov 8, 2023

This is optional dependency. So if some users prefer to use data-encoding, while others base64, may be we can keep both cases, and to call panic! at compile time, if user enable them at the same time.

features are additive since different dependencies could enable both features, if both are enabled one should be preferred over the other

@sdroege
Copy link
Contributor

sdroege commented Nov 8, 2023

data-encoding will likely have a lower MSRV with the next release, basically the same as the current release (1.48): ia0/data-encoding#85

That also shows how you can actually test in the CI that your crate still compiles with that Rust version and a manually maintained Cargo.lock against that version.

edit: note that data-encoding also has no dependencies at all, so the updated proc-macro2 MSRV does not affect tungstenite. That only comes in via the macros from the data-encoding-macro crate which tungstenite does not even depend on indirectly.

@Dushistov
Copy link
Contributor

That reqwest is using base64 would also make it a solution to switch reqwest over to data-encoding if that's the only concern.

The reqwest is only example. The whole rust http stack should be switch to data-encoding:
rustls, cookie, axum, tower-http, headers, actix-http, jsonwebtoken.

@sdroege
Copy link
Contributor

sdroege commented Nov 15, 2023

Related to the cargo issue about not considering MSRV there's a pre-RFC now for implementing that: https://internals.rust-lang.org/t/pre-rfc-msrv-aware-resolver/19871/1

@daniel-abramov
Copy link
Member

Nice! @sdroege, thanks for elaborated answers and kicking off the whole "revert MSRV change" in data-encoding 👍

So just to summarize things: folks that are not happy with the current dependency on data-encoding, do I get you right, that the only remaining concern with data-encoding is that base64 is used by "many popular Rust crates" and so depending on tungstenite (that uses data-encoding) and some other popular crate (that most likely uses base64) would mean that both crates will be downloaded/built and that's something that you feel is suboptimal? Or are there any other problems that I missed?

@Dushistov
Copy link
Contributor

@daniel-abramov , yes the main concern is one more useless dependency. A useless dependency, not in a bad way, but because exactly the same functionality is already among of the dependencies.

One more dependency is may be looks like is not big deal, but with big enough dependency graph,
each one new dependency is huge pain in the ass, for watching, updating, auditing and so on.

So I think it is time to reconsider #330 , it is not true that "base64 requires quite a bit more code", as demonstrated this PR,
but it is true that base64 with almost 90% probability exists among dependency tree of big enough project.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants