Compare commits

...

3 Commits

Author SHA1 Message Date
9f6e0cdc80 feat: add repo
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-09-23 22:30:11 +02:00
e78d07db33 feat: find another name
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-09-23 22:29:11 +02:00
4b9b134980 feat: update basic settings
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-09-23 22:27:44 +02:00
405 changed files with 14 additions and 12 deletions

2
Cargo.lock generated
View File

@@ -217,7 +217,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
[[package]] [[package]]
name = "gitea-rs" name = "gitea-client"
version = "1.22.1" version = "1.22.1"
dependencies = [ dependencies = [
"reqwest", "reqwest",

View File

@@ -3,7 +3,7 @@ members = ["crates/*"]
resolver = "2" resolver = "2"
[workspace.dependencies] [workspace.dependencies]
gitea-rs = { path = "crates/gitea-rs" } gitea-client = { path = "crates/gitea-client" }
anyhow = { version = "1.0.71" } anyhow = { version = "1.0.71" }
tokio = { version = "1", features = ["full"] } tokio = { version = "1", features = ["full"] }

View File

@@ -1,4 +1,4 @@
# gitea-rs # gitea-client
This is just a simple generation of giteas openapi spec, compatibility not guaranteed. This is just a simple generation of giteas openapi spec, compatibility not guaranteed.

View File

@@ -1,10 +1,12 @@
[package] [package]
name = "gitea-rs" name = "gitea-client"
version = "1.22.1" version = "1.22.1"
authors = ["OpenAPI Generator team and contributors"] authors = ["OpenAPI Generator team and contributors", "kjuulh"]
description = "This documentation describes the Gitea API." description = "This documentation describes the Gitea API."
repository = "https://git.front.kjuulh.io/kjuulh/gitea-rs"
license = "MIT" license = "MIT"
edition = "2021" edition = "2021"
publish = true
[dependencies] [dependencies]
serde = { version = "^1.0", features = ["derive"] } serde = { version = "^1.0", features = ["derive"] }

View File

@@ -1,4 +1,4 @@
# Rust API client for gitea-rs # Rust API client for gitea-client
This documentation describes the Gitea API. This documentation describes the Gitea API.
@@ -14,10 +14,10 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
## Installation ## Installation
Put the package under your project folder in a directory named `gitea-rs` and add the following to `Cargo.toml` under `[dependencies]`: Put the package under your project folder in a directory named `gitea-client` and add the following to `Cargo.toml` under `[dependencies]`:
``` ```
gitea-rs = { path = "./gitea-rs" } gitea-client = { path = "./gitea-client" }
``` ```
## Documentation for API Endpoints ## Documentation for API Endpoints

Some files were not shown because too many files have changed in this diff Show More