Browse Source

Initial commit

Key-exchange
Matthias Hopf 1 year ago
parent
commit
1202463d4d
4 changed files with 19 additions and 0 deletions
  1. 5
    0
      .gitignore
  2. 8
    0
      Cargo.toml
  3. 3
    0
      src/bin/client.rs
  4. 3
    0
      src/bin/server.rs

+ 5
- 0
.gitignore View File

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



# Added by cargo

/target

+ 8
- 0
Cargo.toml 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
- 0
src/bin/client.rs View File

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

+ 3
- 0
src/bin/server.rs View File

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

Loading…
Cancel
Save