1
0
Fork 0

Adding upstream version 0.4.1.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-05 05:23:13 +01:00
parent bc9f87646a
commit f4a13f7987
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
19 changed files with 41510 additions and 0 deletions

28
Cargo.toml.orig generated Normal file
View file

@ -0,0 +1,28 @@
workspace = { members = ["generator"] }
[package]
name = "forgejo-api"
version = "0.4.1"
edition = "2021"
license = "Apache-2.0 OR MIT"
repository = "https://codeberg.org/Cyborus/forgejo-api"
description = "Interface to Forgejo's Web API"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11.18", features = ["json", "multipart"] }
soft_assert = "0.1.1"
thiserror = "1.0.43"
tokio = { version = "1.29.1", features = ["net"] }
url = { version = "2.4.0", features = ["serde"] }
serde = { version = "1.0.168", features = ["derive"] }
time = { version = "0.3.26", features = ["parsing", "serde", "formatting"] }
serde_json = "1.0.108"
bytes = "1.5.0"
base64ct = "1.6.0"
zeroize = "1.7.0"
[dev-dependencies]
eyre = "0.6.9"
reqwest = { version = "0.11.18", features = ["cookies"] }
tokio = { version = "1.29.1", features = ["net", "fs", "rt", "macros"] }