- hiding stdout ain't helpful 99% of the time like I have to go "why the fuck is this shit hanging?" and have to guess if it's even doing shit
12 lines
195 B
Python
12 lines
195 B
Python
from src.util import paru_install
|
|
from os import system
|
|
|
|
|
|
name = "rust"
|
|
|
|
|
|
def setup():
|
|
"""C++ but modern"""
|
|
|
|
paru_install(["rustup", "rust-analyzer"])
|
|
system("rustup install stable")
|