Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyrix126 committed May 16, 2024
1 parent eede4a4 commit 9180595
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 7 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# This runs `cargo audit` on all dependencies (only if Cargo deps changed)

name: Audit

on:
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'

env:
CARGO_TERM_COLOR: always

jobs:
audit:

runs-on: ubuntu-latest

steps:
- name: Cache
uses: actions/[email protected]
with:
path: |
~/.cargo
target
key: audit
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install dependencies
run: cargo install cargo-audit --locked
- name: Audit
run: cargo audit

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "long-tasks-manager-rs"
name = "task-tracker-rs"
version = "0.1.0"
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Notes of long-tasks-manager-rs
# Notes of task-tracker-rs

## Crates to use

Expand Down
2 changes: 1 addition & 1 deletion OBJECTIVES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# OBJECTIVES of long-tasks-manager
# OBJECTIVES of task-tracker
## Serve a task manager API
The purpose is to serve an API to manage status of long running tasks.
### CRUD
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# long-tasks-manager-rs
# task-tracker-rs
Restfull API backend to manage status of long running tasks.
## Description
long-tasks-manager-rs is a backend service that manage only the status, not the tasks themselves.
task-tracker-rs is a backend service that manage only the status, not the tasks themselves.
A service can use it to create a task, update the progress and status of completion. An id to track the task will be given at creation, allowing to view or update it.
## Features

Expand Down
2 changes: 1 addition & 1 deletion TODO.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# TODO long-tasks-manager
# TODO task-tracker

- [ ] way to configure admin key and listening port at startup (env variables)
- [ ] struct to store task data
Expand Down
2 changes: 1 addition & 1 deletion USECASE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# API of long-tasks-manager
# API of task-tracker

long-task-manager (LTM) scenario of usage:

Expand Down

0 comments on commit 9180595

Please sign in to comment.