Skip to content

Commit

Permalink
Minor updates to README
Browse files Browse the repository at this point in the history
  • Loading branch information
robgonnella committed Sep 11, 2024
1 parent 2fa64c8 commit b552da4
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 2 deletions.
39 changes: 37 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,43 @@
# r-lanscan
# R-LANSCAN/

An ARP and SYN network scanning library and cli written in rust! This is the
An ARP and SYN network scanning library, cli, and ui written in rust! This is the
rust version of [go-lanscan]

**Table of contents**
- [R-LANSCAN/](#r-lanscan)
- [Projects](#projects)
- [Testing](#testing)

# Projects

- [r-lanlib](./r-lanlib/README.md)
- [r-lanscan](./r-lanscan/README.md)
- [r-lanui](./r-lanui/README.md)

# Testing

Prerequisites

- install llvm-cov

```zsh
cargo +stable install cargo-llvm-cov --locked
```

Run tests

```zsh
# Run all tests
cargo test

# Run all tests and print coverage
cargo llvm-cov

# Run all tests and generate html report
cargo llvm-cov --html

# Run tests for specific project
cargo test -p r-lanlib
```

[go-lanscan]: https://github.com/robgonnella/go-lanscan
3 changes: 3 additions & 0 deletions r-lanlib/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# R-LANLIB

Library package for performing ARP and SYN scanning of a LAN
3 changes: 3 additions & 0 deletions r-lanscan/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# R-LANSCAN

CLI for performing ARP and SYN scanning of LAN
3 changes: 3 additions & 0 deletions r-lanui/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# R-LANUI

UI for discovering and managing on premise LAN devices

0 comments on commit b552da4

Please sign in to comment.