syslog-server 0.2.2

A small automation project to set up a syslog server, which also serves as a playground for Rust.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Syslog-Server
- **A small automation project to set up a syslog server, which also serves as a playground for Rust.**

## Build
1. Install Depends:
```sh
sudo apt install cargo
sudo snap install --classic rustup
rustup install stable
cargo install cargo-deb
```
2. Build the package:
```sh
cargo run # for debugging
cargo build --release # for tests like a real release
cargo deb # build the DEB package
```