-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Add readme to doc.rs pages and fix doc lints
- Loading branch information
Showing
7 changed files
with
22 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Pueue | ||
|
||
These are the internal library files that **shouldn't** be used by anything but `pueue` itself. | ||
|
||
If you're looking for a way to install the `pueue` binaries, please refer to [Pueue's crates.io page](https://crates.io/crates/pueue) or the [Github repository](https://github.com/nukesor/pueue). | ||
|
||
If you're looking for a way to programatically interface with `pueue` via Rust code, please take a look at the [`pueue_lib`](https://docs.rs/pueue-lib/latest/pueue_lib/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// This lint is generating way too many false-positives. | ||
// Ignore it for now. | ||
#![allow(clippy::assigning_clones)] | ||
|
||
#![doc = include_str!("../README.md")] | ||
pub mod client; | ||
pub mod daemon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,18 @@ | ||
# Pueue-lib | ||
|
||
[![GitHub Actions Workflow](https://github.com/nukesor/pueue/workflows/Test%20build/badge.svg)](https://github.com/Nukesor/pueue/actions) | ||
[![Test Build](https://github.com/Nukesor/pueue/actions/workflows/test.yml/badge.svg)](https://github.com/Nukesor/pueue/actions/workflows/test.yml) | ||
[![Crates.io](https://img.shields.io/crates/v/pueue-lib)](https://crates.io/crates/pueue-lib) | ||
[![docs](https://docs.rs/pueue-lib/badge.svg)](https://docs.rs/pueue-lib/) | ||
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) | ||
|
||
|
||
This is the shared library used by the [Pueue](https://github.com/nukesor/pueue/) client and daemon. | ||
|
||
It can also be used by third-party software to, for instance, to communicate with the Pueue daemon. | ||
|
||
## Contributing | ||
|
||
Feature requests and pull requests are very much appreciated and welcome! | ||
|
||
Anyhow, please talk to me a bit about your ideas before you start hacking! | ||
It's always nice to know what you're working on and I might have a few suggestions or tips :) | ||
|
||
There's also the [Architecture Guide](https://github.com/Nukesor/pueue/blob/main/ARCHITECTURE.md), which is supposed to give you a brief overview and introduction to the project. | ||
It contains common components such as: | ||
|
||
Copyright © 2019-2022 Arne Beer ([@Nukesor](https://github.com/Nukesor)) | ||
- Everything about the [Task](task::Task), [TaskResult](task::TaskResult) etc. | ||
- The [State](state::State), which represents the current state of the daemon. | ||
- Network code. Everything you need to communicate with the daemon. | ||
- Other helper code and structs. | ||
|
||
Pueue-lib is a stand-alone crate, so it can be used by third-party applications to either | ||
manipulate or monitor the daemon or to simply write your own front-end for the daemon. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters