create project structure

This commit is contained in:
2026-02-25 04:31:13 -06:00
parent 6904db79f0
commit bb626045a3
7 changed files with 62 additions and 1 deletions

5
.gitignore vendored
View File

@@ -1 +1,4 @@
JustAMailProtocol/
JustAMailProtocol/
*.exe
*.pdb

20
jamp_client/.gitignore vendored Normal file
View File

@@ -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

6
jamp_client/Cargo.toml Normal file
View File

@@ -0,0 +1,6 @@
[package]
name = "jamp_client"
version = "0.1.0"
edition = "2024"
[dependencies]

3
jamp_client/src/main.rs Normal file
View File

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

20
jamp_server/.gitignore vendored Normal file
View File

@@ -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

6
jamp_server/Cargo.toml Normal file
View File

@@ -0,0 +1,6 @@
[package]
name = "jamp_server"
version = "0.1.0"
edition = "2024"
[dependencies]

3
jamp_server/src/main.rs Normal file
View File

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