Created Rust project

This commit is contained in:
Entity 2024-10-14 13:02:50 +02:00
parent a527abe4a6
commit bbe9059516
Signed by: Entity
SSH Key Fingerprint: SHA256:zdOcLEK0rgkzxXEN6vZ1EuWYnQSp4+5l+j2y3omc7Tk
5 changed files with 23 additions and 2 deletions

View File

@ -1,8 +1,8 @@
FROM alpine:latest
# Install dependencies
RUN apk add --no-cache --update git ca-certificates curl openssh-client
RUN apk add --no-cache --update g++ zsh git ca-certificates curl openssh-client
# Add my user
RUN adduser Entity -h /home/Entity -S
RUN adduser Entity -h /home/Entity -S --shell /bin/zsh
RUN addgroup Entity
RUN adduser Entity Entity
# Switch to my user

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
SSH-Transfer/target

7
SSH-Transfer/Cargo.lock generated Normal file
View File

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "SSH-Transfer"
version = "0.1.0"

10
SSH-Transfer/Cargo.toml Normal file
View File

@ -0,0 +1,10 @@
[package]
name = "SSH-Transfer"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "SSH-Transfer"
path = "Source/App.rs"
[dependencies]

View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}