diff --git a/.gitignore b/.gitignore index 7cf04ac..903e7e5 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,4 @@ -JustAMailProtocol/ \ No newline at end of file +JustAMailProtocol/ + +*.exe +*.pdb \ No newline at end of file diff --git a/jamp_client/.gitignore b/jamp_client/.gitignore new file mode 100644 index 0000000..097d2d4 --- /dev/null +++ b/jamp_client/.gitignore @@ -0,0 +1,20 @@ +# Created by https://www.toptal.com/developers/gitignore/api/rust +# Edit at https://www.toptal.com/developers/gitignore?templates=rust + +### Rust ### +# Generated by Cargo +# will have compiled files and executables +debug/ +target/ + +# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries +# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html +Cargo.lock + +# These are backup files generated by rustfmt +**/*.rs.bk + +# MSVC Windows builds of rustc generate these, which store debugging information +*.pdb + +# End of https://www.toptal.com/developers/gitignore/api/rust \ No newline at end of file diff --git a/jamp_client/Cargo.toml b/jamp_client/Cargo.toml new file mode 100644 index 0000000..13e6bb6 --- /dev/null +++ b/jamp_client/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "jamp_client" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/jamp_client/src/main.rs b/jamp_client/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/jamp_client/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} diff --git a/jamp_server/.gitignore b/jamp_server/.gitignore new file mode 100644 index 0000000..097d2d4 --- /dev/null +++ b/jamp_server/.gitignore @@ -0,0 +1,20 @@ +# Created by https://www.toptal.com/developers/gitignore/api/rust +# Edit at https://www.toptal.com/developers/gitignore?templates=rust + +### Rust ### +# Generated by Cargo +# will have compiled files and executables +debug/ +target/ + +# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries +# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html +Cargo.lock + +# These are backup files generated by rustfmt +**/*.rs.bk + +# MSVC Windows builds of rustc generate these, which store debugging information +*.pdb + +# End of https://www.toptal.com/developers/gitignore/api/rust \ No newline at end of file diff --git a/jamp_server/Cargo.toml b/jamp_server/Cargo.toml new file mode 100644 index 0000000..d9f8b41 --- /dev/null +++ b/jamp_server/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "jamp_server" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/jamp_server/src/main.rs b/jamp_server/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/jamp_server/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}