Skip to content

Commit f73d6e8

Browse files
committed
Include README for Rust package as well; bump version to 0.30.1
1 parent ceb403e commit f73d6e8

File tree

4 files changed

+26
-4
lines changed

4 files changed

+26
-4
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libs/opsqueue_python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "opsqueue_python"
3-
version = "0.30.0"
3+
version = "0.30.1"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

opsqueue/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "opsqueue"
3-
version = "0.30.0"
3+
version = "0.30.1"
44
edition = "2021"
55
description = "lightweight batch processing queue for heavy loads"
66
repository = "https://github.com/channable/opsqueue"

opsqueue/README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Opsqueue is a lightweight batch processing queue system.
2+
3+
This crate describes both the opsqueue queue binary, as well as the core of the various client libraries that can call it.
4+
5+
## Installing the Opsqueue binary
6+
7+
`cargo install opsqueue`
8+
9+
## Using a client library
10+
11+
Currently, we have high-level Python bindings available, c.f. [https://pypi.org/project/opsqueue/](https://pypi.org/project/opsqueue/).
12+
13+
Besides this, the Rust client itself can be used directly, by including `opsqueue` as a library in your project's `Cargo.toml` and enabling the `client-logic` feature-flag:
14+
15+
```toml
16+
opsqueue = {version = "0.30.0", default-features = false, features = ["client-logic"]}
17+
```
18+
19+
## More info
20+
21+
Find full usage instructions and details at the main repository readme:
22+
[https://github.com/channable/opsqueue](https://github.com/channable/opsqueue)

0 commit comments

Comments
 (0)