rocket-auth-login
case-studies
Our great sponsors
rocket-auth-login | case-studies | |
---|---|---|
1 | 11 | |
53 | 1,285 | |
- | - | |
0.0 | 0.0 | |
over 2 years ago | 9 days ago | |
Rust | Rust | |
GNU General Public License v3.0 or later | Apache License 2.0 |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
rocket-auth-login
-
Hey Rustaceans! Got an easy question? Ask here (29/2021)!
There is https://github.com/vishusandy/rocket-auth-login IIRC. It's "third-party" (e.g. not by the rocket team). I haven't used it really (just tinkered around with it). I am also no expert when it comes down to authentication. But I do remember taking a look at the code. It looked all right.
case-studies
-
::lending-iterator — Lending/streaming Iterators on Stable Rust (and a pinch of HKT)
Luckily there is a workaround to emulate such a definition, which dtolnay discovered and explained here: https://github.com/dtolnay/case-studies/tree/b9802f6df8dc8e54970b83fb9af6df923b46abf5/unit-type-parameters.
-
Hey Rustaceans! Got a question? Ask here! (17/2022)!
I think they are talking about this one trick which the devs don't want you to know about. Note that while it looks like specialization, it works only in a few very limited cases and is quite fragile, so it's a hack, not a substitute for the real feature.
-
Any good resources for learning Rust macros?
Also I suggest his case studies repo since you are looking at what is possible: https://github.com/dtolnay/case-studies
-
What are some creative/advanced uses of macro_rules?
/u/dtolnay has a great case studies repository.
-
Hey Rustaceans! Got an easy question? Ask here (29/2021)!
Once you have the basics down, read dtolnay's case studies. They show how to do advanced stuff with easy macros.
-
Hey Rustaceans! Got an easy question? Ask here (11/2021)!
You can use "Autoref-based stable specialization" or use/mimic the impls crate.
-
Why I gave up on Rust (for now)
With a subset of specialization likely riding the trains soon and a workaround available, why would you give up?
-
Hey Rustaceans! Got an easy question? Ask here (10/2021)!
Addendum: Technically there are various hacks out in the wild that can get something like this working using macros, but their usefulness is more limited. Once generics are in play, they stop working for the same reason and you are back to square one. Such approaches include autoref specialization which (ab)uses type inferrence to select different methods with the same name (kind of similar to what you seemed to be trying to do) and OIBIT specialization, which relies on a different nightly feature.
this works since values and types are in different namespaces (see: Rusts Universes or dtolnay's Case Study about "Unit struct with type parameters")
-
Hey Rustaceans! Got an easy question? Ask here (53/2020)!
To do this with traits you would need specialization but since you are using macros you should be able to use "Autoref-based stable specialization". Here is a playground which uses the latter approach to implement the wanted macro without using any nightly features.
What are some alternatives?
rocket_auth - An implementation for an authentication API for Rocket applications.
firestore-db-and-auth-rs - Easy Rust access to your Google Firestore DB via service account or OAuth impersonated Google Firebase Auth credentials
Thruster - A fast, middleware based, web framework written in Rust
rust - Empowering everyone to build reliable and efficient software.
dsfs
inertia-rs - Inertia.js for Rust
proc-macro-crate - `$crate` in procedural macros.
parquet2 - Fastest and safest Rust implementation of parquet. `unsafe` free. Integration-tested against pyarrow
mini-redis - Incomplete Redis client and server implementation using Tokio - for learning purposes only
xargo - The sysroot manager that lets you build and customize `std`
cross - “Zero setup” cross compilation and “cross testing” of Rust crates