Compare commits

...

19 Commits

Author SHA1 Message Date
e6f691746a fix(deps): update rust crate reqwest to v0.13.2 2026-02-07 01:31:09 +00:00
41cf57f9c3 fix(deps): update rust crate uuid to v1.20.0 2026-01-25 01:31:18 +00:00
cbfd866bae fix(deps): update rust crate serde_json to v1.0.149 2026-01-07 01:32:07 +00:00
7a10a0caf1 fix(deps): update rust crate url to v2.5.8 2026-01-06 01:32:12 +00:00
efea42fd27 chore(deps): update rust crate tokio to v1.49.0 2026-01-04 01:32:19 +00:00
f9405313a9 fix(deps): update rust crate reqwest to ^0.13.0 2025-12-31 01:33:26 +00:00
4c5e69b5b5 fix(deps): update rust crate serde_json to v1.0.148 2025-12-28 01:32:49 +00:00
5808abfdad fix(deps): update rust crate serde_json to v1.0.147 2025-12-24 01:33:19 +00:00
f870a7ebf0 fix(deps): update all dependencies 2025-12-23 01:33:40 +00:00
81399bfdf9 chore(deps): update rust crate tracing to v0.1.44 2025-12-19 01:36:14 +00:00
feed382e2e fix(deps): update rust crate reqwest to v0.12.26 2025-12-16 01:32:44 +00:00
9aba4b328e fix(deps): update rust crate reqwest to v0.12.25 2025-12-09 01:31:21 +00:00
8f9aa3e3a9 fix(deps): update rust crate uuid to v1.19.0 2025-12-02 04:30:01 +00:00
dccd7cb6cf chore(deps): update rust crate tracing to v0.1.43 2025-11-29 01:34:20 +00:00
77a02d7d18 chore(deps): update rust crate tracing to v0.1.41 2025-11-13 04:23:46 +00:00
d72512bef8 fix(deps): update all dependencies 2025-11-13 02:00:20 +00:00
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 957 additions and 390 deletions

1321
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -3,7 +3,7 @@ members = ["crates/*"]
resolver = "2"
[workspace.dependencies]
gitea-rs = { path = "crates/gitea-rs" }
gitea-client = { path = "crates/gitea-client" }
anyhow = { version = "1.0.71" }
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.

View File

@@ -1,10 +1,12 @@
[package]
name = "gitea-rs"
name = "gitea-client"
version = "1.22.1"
authors = ["OpenAPI Generator team and contributors"]
authors = ["OpenAPI Generator team and contributors", "kjuulh"]
description = "This documentation describes the Gitea API."
repository = "https://git.front.kjuulh.io/kjuulh/gitea-rs"
license = "MIT"
edition = "2021"
publish = true
[dependencies]
serde = { version = "^1.0", features = ["derive"] }
@@ -12,4 +14,4 @@ serde_json = "^1.0"
serde_repr = "^0.1"
url = "^2.5"
uuid = { version = "^1.8", features = ["serde", "v4"] }
reqwest = { version = "^0.12", features = ["json", "multipart"] }
reqwest = { version = "^0.13.0", features = ["json", "multipart"] }

View File

@@ -1,4 +1,4 @@
# Rust API client for gitea-rs
# Rust API client for gitea-client
This documentation describes the Gitea API.
@@ -14,10 +14,10 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
## 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

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