Skip to content

Commit

Permalink
Prepare for 0.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
LVala committed Jan 25, 2024
1 parent 184e7de commit 7f1f218
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 1 deletion.
7 changes: 7 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
name = "rtpeeker"
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "RTP streams analysis and visualization tool"
homepage = "https://github.com/LVala/rtpeeker/"
repository = "https://github.com/LVala/rtpeeker/"
readme = "README.md"
keywords = ["streaming", "RTP", "networking"]
categories = ["development-tools", "multimedia", "visualization"]
include = ["/client"]

[dependencies]
Expand Down
27 changes: 26 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,32 @@
# RTPeeker

![CI](https://github.com/github/docs/actions/workflows/ci.yml/badge.svg)
![Crates.io Version](https://img.shields.io/crates/v/rtpeeker)

RTP streams analysis and visualization tool.

_Work in progress_

## Installation

_TODO_
Supports Linux and MacOS.

RTPeeker depends on `libpcap`, makes sure to install it:

```console
# installed on MacOS by default
sudo apt install libpcap-dev # for Ubuntu
sudo pacman -S libpcap # for Arch
```

RTPeeker itself can be installed with the [Rust toolchain](https://www.rust-lang.org/tools/install):

```console
cargo install --locked rtpeeker
```

Run RTPeeker with:

```console
rtpeeker --help
```
5 changes: 5 additions & 0 deletions common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
name = "rtpeeker_common"
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "Crate with common utilities for rtpeeker"
homepage = "https://github.com/LVala/rtpeeker/"
repository = "https://github.com/LVala/rtpeeker/"
readme = false

[dependencies]
serde = { version ="1.0", features = ["derive"]}
Expand Down

0 comments on commit 7f1f218

Please sign in to comment.