rust-playground icon indicating copy to clipboard operation
rust-playground copied to clipboard

The Rust Playground

Results 165 rust-playground issues
Sort by recently updated
recently updated
newest added

Not sure what version to show off hand... maybe none?

enhancement

Hello, Getting programs to work with no_std is pretty tricky on the playground. For example, the simple program: ```rs #![no_std] fn main()->(){} ``` This won't compile (as expected) because of...

The way this was brought to my attention was rather bizarre. I recently starred this repo, and shortly thereafter I received an email from [email protected] containing a vulnerability report. I...

Hello all, I haven't been able to find this written up anywhere, so here's the issue. Special characters cause the position to offset, probably due to the Unicode helpers. See...

bug
help wanted
upstream

I often hit Ctrl+S out of paranoia. The "save .HTML" popping up is an annoyance. It would be great if Ctrl+S could trigger either of these actions: - Be ignored...

Based on https://github.com/integer32llc/rust-playground/issues/446#issuecomment-670917927 I really want to be able to set `MIRIFLAGS` when running code in the playground. The community Discord uses a bot that accesses the playground and we...

closes #357 # How to run 1. Download the [pkg.zip](https://github.com/integer32llc/rust-playground/files/8902017/pkg.zip) and extract it to `ui/frontend/intellisence/pkg`. (This is output of `wasm-bindgen` from my fork of `rust-analyzer-wasm` repo, you can also build...

I'd like to use the Playground to test procedural macros, but that requires having both a procedural macro crate and a crate that uses said procedural macros. As such, it'd...

enhancement
help wanted

Hello. Various folks use play.rust-lang.org to share code for educational purposes. Sometimes it would be useful for that code to include a `Cargo.toml`. This especially includes all the examples that...

Consider this code: ```rust #![feature(const_swap)] #![feature(const_mut_refs)] use std::{ mem::{self, MaybeUninit}, ptr, }; const X: () = { let mut ptr1 = &1; let mut ptr2 = &2; // Swap them,...

enhancement