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

# These are backup files generated by rustfmt # These are backup files generated by rustfmt
**/*.rs.bk **/*.rs.bk




# Added by cargo

/target

+ 8
- 0
Cargo.toml View File

[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

fn main() {
println! ("client");
}

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

fn main() {
println! ("server");
}

Loading…
Cancel
Save