@ -0,0 +1,7 @@
.idea
.vscode
/target
.rustup
.cargo
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "pmuw-project"
version = "0.1.0"
@ -0,0 +1,8 @@
[package]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
@ -0,0 +1 @@
# pmuw-project
@ -0,0 +1,10 @@
#!/bin/bash
DIR="$(realpath "$(dirname -- "$0")")"
CARGO="$DIR/.cargo/bin/cargo"
"$CARGO" test
"$CARGO" build --release
exit 0
export RUSTUP_HOME="$DIR/.rustup"
export CARGO_HOME="$DIR/.cargo"
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --no-modify-path
@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}