Hello,
Im now learning the first steps on rust with the rust book.
After that I wanted to make my first website with has to use 3 calls to a external api and combine the output to display some paintings.
Which framework should I think of .
Roelof
Hello,
Im now learning the first steps on rust with the rust book.
After that I wanted to make my first website with has to use 3 calls to a external api and combine the output to display some paintings.
Which framework should I think of .
Roelof
Many good ones but look at https://rocket.rs.
oke, I have then find something so I can ask something to that external api and then parse the output.
Can rust also ask 2 different urls in parallel.
Roelof
Yes. This gets into the future part of Rust. You can combine the async part of reqwest with Future::join.
Note that the future feature of rust is currently in a weird state with a lot of things changing, so it can be difficult to figure out at this time.
Of course, you can also just start another thread.
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.