Skip to content

Commit

Permalink
Merge pull request #32 from gauravgahlot/publish-0.1.0
Browse files Browse the repository at this point in the history
Prepare to publish v0.1.0
  • Loading branch information
gauravgahlot authored Jan 18, 2025
2 parents 8fcf998 + 9e0eb35 commit 5661080
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 9 deletions.
15 changes: 15 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@
name = "argoflows"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
authors = ["Gaurav Gahlot<[email protected]>"]
categories = ["api-bindings", "web-programming::http-client"]
description = "Argoflows lets you seamlessly integrate and manage Argo Workflows directly from your Rust applications."
documentation = "https://docs.rs/argoflows"
keywords = ["argo", "client", "http", "workflows"]
readme = "README.md"
repository = "https://github.io/gauravgahlot/argoflows"
include = [
"Cargo.toml",
"LICENSE",
"README.md",
"src/**/*",
"examples/**/*",
]

[dependencies]
k8s-openapi = { version = "0.24.0", features = ["v1_31"] }
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<p>
<a href="https://github.com/gauravgahlot/argoflows/actions?query=workflow%3ACI"><img src="https://github.com/gauravgahlot/argoflows/actions/workflows/ci.yaml/badge.svg" alt="build status" /></a>
<!-- <a href="https://docs.rs/whisk"><img src="https://docs.rs/whisk/badge.svg" alt="Documentation Status" /></a> -->
<a href="https://docs.rs/argoflows"><img src="https://docs.rs/argoflows/badge.svg" alt="Documentation Status" /></a>
</p>
</div>

Expand Down Expand Up @@ -61,12 +61,12 @@
| | | `/api/v1/stream/sensors/{namespace}/logs` | GET | |
| `WorkflowService` | | `/api/v1/stream/events/{namespace}` | GET | |
| | | `/api/v1/workflow-events/{namespace}` | GET | |
| | | `/api/v1/workflows/{namespace}` | GET | |
| | | `/api/v1/workflows/{namespace}` | POST | |
| | | `/api/v1/workflows/{namespace}` | GET | |
| | | `/api/v1/workflows/{namespace}` | POST | |
| | | `/api/v1/workflows/{namespace}/lint` | POST | |
| | | `/api/v1/workflows/{namespace}/submit` | POST | |
| | | `/api/v1/workflows/{namespace}/{name}` | GET | |
| | | `/api/v1/workflows/{namespace}/{name}` | DELETE | |
| | | `/api/v1/workflows/{namespace}/{name}` | GET | |
| | | `/api/v1/workflows/{namespace}/{name}` | DELETE | |
| | | `/api/v1/workflows/{namespace}/{name}/log` | GET | |
| | | `/api/v1/workflows/{namespace}/{name}/resubmit` | PUT | |
| | | `/api/v1/workflows/{namespace}/{name}/resume` | PUT | |
Expand All @@ -76,12 +76,12 @@
| | | `/api/v1/workflows/{namespace}/{name}/suspend` | PUT | |
| | | `/api/v1/workflows/{namespace}/{name}/terminate` | PUT | |
| | | `/api/v1/workflows/{namespace}/{name}/{podName}/log` | GET | DEPRECATED: Cannot work via HTTP if podName is an empty string. Use `WorkflowLogs`. |
| `WorkflowTemplateService` | | `/api/v1/workflow-templates/{namespace}` | GET | |
| | | `/api/v1/workflow-templates/{namespace}` | POST | |
| `WorkflowTemplateService` | | `/api/v1/workflow-templates/{namespace}` | GET | |
| | | `/api/v1/workflow-templates/{namespace}` | POST | |
| | | `/api/v1/workflow-templates/{namespace}/lint` | POST | |
| | | `/api/v1/workflow-templates/{namespace}/{name}` | GET | |
| | | `/api/v1/workflow-templates/{namespace}/{name}` | GET | |
| | | `/api/v1/workflow-templates/{namespace}/{name}` | PUT | |
| | | `/api/v1/workflow-templates/{namespace}/{name}` | DELETE | |
| | | `/api/v1/workflow-templates/{namespace}/{name}` | DELETE | |
| `ArtifactService` | | `/artifact-files/{namespace}/{idDiscriminator}/{id}/{nodeId}/{artifactDiscriminator}/{artifactName}` | GET | Get an artifact. |
| | | `/artifacts-by-uid/{uid}/{nodeId}/{artifactName}` | GET | Get an output artifact by UID. |
| | | `/artifacts/{namespace}/{name}/{nodeId}/{artifactName}` | GET | Get an output artifact. |
Expand Down

0 comments on commit 5661080

Please sign in to comment.