tvallotton / rocket_auth

An implementation for an authentication API for Rocket applications.
https://docs.rs/rocket_auth/
Apache License 2.0
73 stars 35 forks source link

Derestrict rusqlite dependency version #44

Closed jaybosamiya closed 2 years ago

jaybosamiya commented 2 years ago

This commit removes depending exactly on rusqlite 0.25.3 (which has been yanked btw).

From quick testing, depending on the latest version (0.27.0) works too, so alternatively, you could change the version to be 0.27.0 rather than this commit's suggestion.

As an alternative, running cargo upgrade to update all dependencies to latest versions, it seems like everything builds fine (and the tests seem to produce some minor fixable suggestions), so maybe if making a new release, it might be good to update all dependencies. Happy to make a separate PR if you think it would be useful.

Thanks for this project btw! :)

tvallotton commented 2 years ago

I think I prefer having a specific version so to avoid possible breakage in the future. Thanks for making me aware of this.

jaybosamiya commented 2 years ago

Sounds good thanks, closing this PR