maddymakesgames / Rust-CE

A proof-of-concept of rust on the ti-84+ce
MIT License
33 stars 1 forks source link

Feature "asm" has been stable since 1.59.0 #3

Closed darkwater4213 closed 1 year ago

darkwater4213 commented 1 year ago

The full error (this PR is the fix for it):

error[E0554]: `#![feature]` may not be used on the stable release channel
 --> ./src/main.rs:1:12
  |
1 | #![feature(asm)]
  |            ^^^

warning: the feature `asm` has been stable since 1.59.0 and no longer requires an attribute to enable
 --> ./src/main.rs:1:12
  |
1 | #![feature(asm)]
  |            ^^^
  |
  = note: `#[warn(stable_features)]` on by default

That's it. The other error I got had to do with glibc; I'm running a fork of Bionic xUbuntu (GalliumOS, if you're curious). For correctness's sake, if nothing else, this should no longer be in the proof-of-concept.

maddymakesgames commented 1 year ago

Thanks for noticing this. I haven't been updating this due to technical issues so I hadn't caught that asm was stable now.