I have done the rustlings a few times and I think I understand the basics now.
So I tried to follow a tutorial on rocket framework but it seems that is level to high for me.
Are there ways to come at a level I can work with Rocket so I can make a small website.
Thanks , my goal is to write complex web apps later and solve problems like advent of code.
but I understand that can take a long time.
I also looked at exercism.io with challenges from easy to hard but there I do not get feedback because the mentored mode has closed so I never know if did things the right or the wrong way or if can improve things
maybe for me the web assembly can be a good choice to make interactive website's in the future
It's hard to know for sure without knowing what made using rocket difficult for you but I have a feeling you're closet than you think!
I think (not having done them myself, only glanced at a few just now) the rustling exercises won't have gotten you used to some of the more complex types "real libraries" use. I think there are a couple of things you need to do to bridge the gap and gain confidence.
Learn how to read rust documentation (I don't mean to be rude!) The documentation usually takes some getting used to. Navigate around the rust std docs and try generating docs for a crate of your own to get a feel for it. You will need to read (some of) the rocket docs. Type signatures might look mysterious at first but once you understand the common types a library uses you'll find everything gets easier.
Read the chapter on generics in the book. You might not need to explicitly use them in your own tires and functions. But libraries like rocket will need to use them. I think reading that chapter will help even more to make the type signatures (and the errors!) involved in using a rust library easier to understand.
My final point would be to just get stuck in. You're not going to get a whole web server to compile first time using rust and that's not a problem. Read the compiler errors just as you are probably used to from rustlings and don't lose heart