All checks were successful
/ Compile and upload a release build (release) Successful in 54s
Barely anything has changed, but the package *is* different. v3 is from months back and is missing information that Crates.io kinda wants.
19 lines
661 B
TOML
19 lines
661 B
TOML
[package]
|
|
name = "gt-tool"
|
|
version = "3.0.1"
|
|
edition = "2024"
|
|
license = "GPL-3.0-only"
|
|
description = "CLI tools for interacting with the Gitea API. Mainly for attaching files to releases."
|
|
# homepage = "" I have no website for a project home page :(
|
|
repository = "https://git.gelvin.dev/robert/gt-tool"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.23", features = ["derive", "env"] }
|
|
colored = "2.2.0"
|
|
itertools = "0.13.0"
|
|
reqwest = { version = "0.12.15", features = ["json", "stream", "multipart"] }
|
|
serde = { version = "1.0.217", features = ["derive"] }
|
|
tokio = { version = "1.43.1", features = ["macros", "rt-multi-thread"] }
|
|
toml = "0.8.19"
|