Hello!
I'm looking for a web rust playground (editor, compiler) with crates dependencies.
I found rustexplorer but it doesn't have all dependencies from crates.io
1 Like
as far as I know, there's none of them. both for practical reasons and security reasons.
what prevents you from using a local project? just cargo new playground
, you can add whatever dependencies as you like.
2 Likes
I want to share the project/playground with other people.
What about a (private) github repo and codespaces?