2023-07-26 21:33:32 +01:00
|
|
|
[package]
|
|
|
|
name = "forgejo-api-types"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-09-16 13:09:39 +01:00
|
|
|
license = "AGPL-3.0-or-later"
|
|
|
|
keywords = ["forgejo", "types", "codeberg", "api"]
|
|
|
|
authors = ["Robert Walter <robwalter96@gmail.com>"]
|
|
|
|
description = "Rusty API types of the forgejo API"
|
|
|
|
homepage = "https://codeberg.org/VoiDD/forgejo-api-types"
|
|
|
|
repository = "https://codeberg.org/VoiDD/forgejo-api-types"
|
|
|
|
readme = "README.md"
|
2023-07-26 21:33:32 +01:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
clap = { version = "4.3", default-features = false, features = ["derive", "std"] }
|
2023-07-28 07:36:12 +01:00
|
|
|
serde_json = "1.0"
|
2023-07-26 21:33:32 +01:00
|
|
|
color-eyre = "0.6"
|
|
|
|
derive-new = "0.5"
|
2023-09-16 13:09:39 +01:00
|
|
|
hyper = "0.14"
|
2023-07-28 07:36:12 +01:00
|
|
|
palette = { version = "0.7.2", features = ["serializing"] }
|
2023-07-26 21:33:32 +01:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2023-08-26 10:57:52 +01:00
|
|
|
serde-email = "3.0"
|
2023-07-26 21:33:32 +01:00
|
|
|
strum = { version = "0.25", features = ["derive"] }
|
|
|
|
url = { version = "2.4", features = ["serde"] }
|