1
0
Fork 0
forgejo-api/Cargo.toml.orig
Daniel Baumann 5e5f129729
Adding upstream version 0.7.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-03-04 07:26:33 +01:00

28 lines
933 B
TOML

workspace = { members = ["generator"] }
[package]
name = "forgejo-api"
version = "0.7.0"
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.12", 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.12", features = ["cookies"] }
tokio = { version = "1.29.1", features = ["net", "fs", "rt", "macros"] }