Exemplo n.º 1
0
def audit_rust_in_ruby():
    hr.cargo("install", "cargo-audit")
    hr.cargo("audit")
Exemplo n.º 2
0
def check_rust_in_ruby_format():
    hr.cargo("fmt", "--", "--check")
Exemplo n.º 3
0
def lint_rust_in_ruby():
    hr.cargo("clippy")
Exemplo n.º 4
0
def format_rust_in_ruby():
    hr.cargo("fmt")