initial project structure

This commit is contained in:
Jonas_Jones 2022-08-30 22:51:07 +02:00
parent 7179e83fa2
commit bde52a6e9b
17 changed files with 104 additions and 13 deletions

17
desktop/Cargo.toml Normal file
View file

@ -0,0 +1,17 @@
[package]
name = "desktop"
version = "0.1.0"
authors = "Jonas_Jones"
edition = "2021"
description = "The desktop module of the PI-server-rack project."
documentation = "https://github.com/JonasJones/PI-server-rack"
readme = "README.md"
homepage = "https://jonasjones.me/PI-server-rack"
repository = "https://github.com/J-onasJones/PI-server-rack"
license = "MIT OR Apache-2.0"
keywords = ["server", "raspberry pi"]
categories = ["config"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

1
desktop/README.md Normal file
View file

@ -0,0 +1 @@
# Desktop (PC/MAC) module

3
desktop/src/main.rs Normal file
View file

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