From 2291e62e5058b8f36feff5fa2d0709ccd48a29b3 Mon Sep 17 00:00:00 2001 From: primardj Date: Fri, 5 Apr 2024 17:18:20 +0100 Subject: [PATCH] create all phase 1 projects --- 01_phase_rust_src/chpst/Cargo.toml | 8 ++++++++ 01_phase_rust_src/chpst/src/main.rs | 3 +++ {rust_src => 01_phase_rust_src}/sv/Cargo.toml | 0 {rust_src => 01_phase_rust_src}/sv/src/main.rs | 0 01_phase_rust_src/svlogd/Cargo.toml | 8 ++++++++ 01_phase_rust_src/svlogd/src/main.rs | 3 +++ 6 files changed, 22 insertions(+) create mode 100644 01_phase_rust_src/chpst/Cargo.toml create mode 100644 01_phase_rust_src/chpst/src/main.rs rename {rust_src => 01_phase_rust_src}/sv/Cargo.toml (100%) rename {rust_src => 01_phase_rust_src}/sv/src/main.rs (100%) create mode 100644 01_phase_rust_src/svlogd/Cargo.toml create mode 100644 01_phase_rust_src/svlogd/src/main.rs diff --git a/01_phase_rust_src/chpst/Cargo.toml b/01_phase_rust_src/chpst/Cargo.toml new file mode 100644 index 0000000..5e25448 --- /dev/null +++ b/01_phase_rust_src/chpst/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "chpst" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/01_phase_rust_src/chpst/src/main.rs b/01_phase_rust_src/chpst/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/01_phase_rust_src/chpst/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} diff --git a/rust_src/sv/Cargo.toml b/01_phase_rust_src/sv/Cargo.toml similarity index 100% rename from rust_src/sv/Cargo.toml rename to 01_phase_rust_src/sv/Cargo.toml diff --git a/rust_src/sv/src/main.rs b/01_phase_rust_src/sv/src/main.rs similarity index 100% rename from rust_src/sv/src/main.rs rename to 01_phase_rust_src/sv/src/main.rs diff --git a/01_phase_rust_src/svlogd/Cargo.toml b/01_phase_rust_src/svlogd/Cargo.toml new file mode 100644 index 0000000..97e19c5 --- /dev/null +++ b/01_phase_rust_src/svlogd/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "svlogd" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/01_phase_rust_src/svlogd/src/main.rs b/01_phase_rust_src/svlogd/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/01_phase_rust_src/svlogd/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}