autocrate/Cargo.toml

49 lines
1.2 KiB
TOML
Raw Normal View History

2024-01-23 21:38:11 +01:00
[package]
2024-01-23 23:39:15 +01:00
name = "autocrate"
2024-04-26 08:54:23 +02:00
version = "0.1.0-prealpha.5"
2024-01-23 21:38:11 +01:00
edition = "2021"
2024-01-23 23:43:02 +01:00
publish = true
2024-01-23 21:38:11 +01:00
authors = ["Christoph J. Scherr <software@cscherr.de>"]
2024-01-23 23:43:02 +01:00
license = "GPL-3.0-or-later"
2024-01-23 23:39:15 +01:00
description = "Release Manager for Your Projects on Gitea, GitHub, and GitLab"
2024-01-23 21:38:11 +01:00
readme = "README.md"
2024-01-23 23:39:15 +01:00
homepage = "https://git.cscherr.de/PlexSheep/autocrate"
repository = "https://git.cscherr.de/PlexSheep/autocrate"
categories = ["command-line-utilities", "development-tools"]
keywords = [
"continuous-delivery",
"workflow-automation",
"gitea",
"changelog",
"automated-builds",
]
2024-01-23 21:38:11 +01:00
[dependencies]
2024-01-24 23:04:01 +01:00
anyhow = "1.0.79"
async-trait = "0.1.77"
2024-02-24 14:39:05 +01:00
# cargo = "0.76.0"
2024-01-27 23:26:49 +01:00
clap = { version = "4.4.18", features = ["derive", "help"] }
2024-01-24 22:13:34 +01:00
clap-verbosity-flag = "2.1.2"
forgejo-api = "0.1.0"
futures = "0.3.30"
2024-01-24 23:04:01 +01:00
git2 = "0.18.1"
2024-04-26 08:34:13 +02:00
libpt = { version = "0.4.2", features = ["log"] }
2024-04-26 08:54:23 +02:00
octocrab = "0.38.0"
2024-02-24 14:10:44 +01:00
reqwest = "0.11.24"
2024-01-23 23:39:15 +01:00
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.116"
2024-01-23 23:39:15 +01:00
serde_yaml = "0.9.30"
2024-01-28 01:19:46 +01:00
tempfile = "3.9.0"
2024-01-24 23:04:01 +01:00
thiserror = "1.0.56"
2024-02-16 18:37:19 +01:00
tokio = { version = "1.36.0", features = ["tokio-macros", "rt-multi-thread", "macros"] }
url = { version = "2.5.0", features = ["serde"] }
2024-01-24 22:13:34 +01:00
[[bin]]
name = "autocrate"
path = "src/main.rs"
[lib]
name = "autocrate"
path = "src/lib.rs"