Compare commits
19 Commits
6eb4cea5c1
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| e6f691746a | |||
| 41cf57f9c3 | |||
| cbfd866bae | |||
| 7a10a0caf1 | |||
| efea42fd27 | |||
| f9405313a9 | |||
| 4c5e69b5b5 | |||
| 5808abfdad | |||
| f870a7ebf0 | |||
| 81399bfdf9 | |||
| feed382e2e | |||
| 9aba4b328e | |||
| 8f9aa3e3a9 | |||
| dccd7cb6cf | |||
| 77a02d7d18 | |||
| d72512bef8 | |||
|
9f6e0cdc80
|
|||
|
e78d07db33
|
|||
|
4b9b134980
|
1321
Cargo.lock
generated
1321
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -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"] }
|
||||||
|
|||||||
@@ -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.
|
||||||
|
|
||||||
|
|||||||
@@ -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"] }
|
||||||
@@ -12,4 +14,4 @@ serde_json = "^1.0"
|
|||||||
serde_repr = "^0.1"
|
serde_repr = "^0.1"
|
||||||
url = "^2.5"
|
url = "^2.5"
|
||||||
uuid = { version = "^1.8", features = ["serde", "v4"] }
|
uuid = { version = "^1.8", features = ["serde", "v4"] }
|
||||||
reqwest = { version = "^0.12", features = ["json", "multipart"] }
|
reqwest = { version = "^0.13.0", features = ["json", "multipart"] }
|
||||||
@@ -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
Reference in New Issue
Block a user