Initial commit

This commit is contained in:
Matthias Hopf 2022-11-17 11:14:34 +01:00
parent b4759eba71
commit 1202463d4d
4 changed files with 19 additions and 0 deletions

5
.gitignore vendored
View File

@ -10,3 +10,8 @@ Cargo.lock
# These are backup files generated by rustfmt # These are backup files generated by rustfmt
**/*.rs.bk **/*.rs.bk
# Added by cargo
/target

8
Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "appsec"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
src/bin/client.rs Normal file
View File

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

3
src/bin/server.rs Normal file
View File

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