We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39db9cd commit e591ff3Copy full SHA for e591ff3
crates/proc-macro-srv/src/lib.rs
@@ -63,6 +63,8 @@ impl ProcMacroSrv {
63
64
let macro_body = task.macro_body.to_subtree();
65
let attributes = task.attributes.map(|it| it.to_subtree());
66
+ // FIXME: replace this with std's scoped threads once they stabilize
67
+ // (then remove dependency on crossbeam)
68
let result = crossbeam::scope(|s| {
69
let res = s
70
.spawn(|_| {
0 commit comments