Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neox1de/tasky-rs
A todo(task) manager written in Rust
https://github.com/neox1de/tasky-rs
rust-lang task-manager todo-app
Last synced: about 1 month ago
JSON representation
A todo(task) manager written in Rust
- Host: GitHub
- URL: https://github.com/neox1de/tasky-rs
- Owner: neox1de
- License: gpl-2.0
- Created: 2024-12-25T12:09:44.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-12-25T13:16:12.000Z (about 1 month ago)
- Last Synced: 2024-12-25T14:19:14.730Z (about 1 month ago)
- Topics: rust-lang, task-manager, todo-app
- Language: Rust
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tasky-rs
A todo(task) manager written in Rust
## Installation
You can install tasky-rs directly using cargo:
```bash
cargo install --git https://github.com/neox1de/tasky-rs
```## Building from source
To build the project yourself:
1. Clone the repository:
```bash
git clone https://github.com/neox1de/tasky-rs
cd tasky-rs
```2. Build the project:
```bash
cargo build --release
```## Usage
After instlaling with `cargo install` command, if you have add `~/.cargo/bin` to your PATH:
```bash
tasky-rs
```
otherwise, add .cargo/bin to your path:
```bash
export PATH=~/.cargo/bin:$PATH
```
if you have build the project from source, navigate to `target/release`:
```bash
cd target/release && ./tasky-rs
```
## ContributingContributions are welcome! Feel free to submit pull requests or create issues for bugs and feature requests.
## TODOs
Future improvements planned for tasky-rs:
- [ ] Add support for importing/exporting tasks
- [ ] Implement task categories/labels
- [ ] Add due dates for tasks
- [ ] Create task priority levels
- [ ] Add recurring tasks support
- [ ] Create desktop notifications for due tasks## Issues
If you encounter any problems while using tasky-rs, please create an issue on the GitHub repository. I'll be happy to help!
## License
This project is open source and available under the [GNU General Public License v2.0](LICENSE).