Skip to content

Commit

Permalink
chore(release): bump crate version
Browse files Browse the repository at this point in the history
  • Loading branch information
Ghamza-Jd committed Oct 1, 2024
1 parent 4d9a136 commit 7c1dc52
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 19 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resolver = "2"
members = ["jarust", "jarust_plugins", "jarust_rt", "jarust_interface"]

[workspace.package]
version = "0.6.0"
version = "0.7.0"
authors = ["Hamza Jadid"]
description = "A janus client SDK in Rust"
readme = "README.md"
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ The supported Janus plugins currently are:

- EchoTest
- AudioBridge
- VideoBridge
- Streaming

## Examples

Expand Down
4 changes: 2 additions & 2 deletions jarust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ doctest = false

[dependencies]
async-trait.workspace = true
jarust_interface = { version = "0.6.0", path = "../jarust_interface" }
jarust_rt = { version = "0.6.0", path = "../jarust_rt" }
jarust_interface = { version = "0.7.0", path = "../jarust_interface" }
jarust_rt = { version = "0.7.0", path = "../jarust_rt" }
serde_json.workspace = true
serde.workspace = true
tokio = { workspace = true, features = ["sync", "time"] }
Expand Down
14 changes: 3 additions & 11 deletions jarust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,10 @@

The core of jarust.

It handles:
It under the hood it uses [jarust_interface](https://crates.io/crates/jarust_interface) to provide an abstract api
for connecting, creating a session, attaching to a plugin, and then communicate with the plugin handle.

- Connection
- Sessions
- Handles
- Send messages
- Receive events
- Demultiplexing

## Plugins

Checkout the existing plugins: [jarust_plugins](https://crates.io/crates/jarust_plugins)
It's also the building block for the plugin crate [jarust_plugins](https://crates.io/crates/jarust_plugins)

## Example usage

Expand Down
2 changes: 1 addition & 1 deletion jarust_interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ async-trait.workspace = true
bytes.workspace = true
futures-util.workspace = true
indexmap = "2.5.0"
jarust_rt = { version = "0.6.0", path = "../jarust_rt" }
jarust_rt = { version = "0.7.0", path = "../jarust_rt" }
rand = "0.8.5"
reqwest = { version = "0.12.7", features = ["json"] }
serde_json.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions jarust_plugins/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ doctest = false

[dependencies]
async-trait.workspace = true
jarust = { version = "0.6.0", path = "../jarust" }
jarust_interface = { version = "0.6.0", path = "../jarust_interface" }
jarust_rt = { version = "0.6.0", path = "../jarust_rt" }
jarust = { version = "0.7.0", path = "../jarust" }
jarust_interface = { version = "0.7.0", path = "../jarust_interface" }
jarust_rt = { version = "0.7.0", path = "../jarust_rt" }
serde_json.workspace = true
serde.workspace = true
tokio = { workspace = true, features = ["sync"] }
Expand Down
2 changes: 1 addition & 1 deletion jarust_plugins/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Current plugins:

- [x] Echo test
- [x] Audio bridge
- [ ] Video room
- [x] Video room
- [ ] Streaming

## EchoTest Example
Expand Down

0 comments on commit 7c1dc52

Please sign in to comment.