forgejo-cli/Cargo.toml

36 lines
969 B
TOML
Raw Normal View History

2023-07-11 18:43:19 +02:00
[package]
name = "fj"
2024-04-18 20:53:18 +02:00
version = "0.0.4"
2023-07-11 18:43:19 +02:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
update-check = ["dep:semver"]
2023-07-11 18:43:19 +02:00
[dependencies]
2024-07-25 18:53:24 +02:00
auth-git2 = "0.5.4"
2024-06-01 17:10:26 +02:00
base64ct = { version = "1.6.0", features = ["std"] }
2024-07-25 18:53:24 +02:00
clap = { version = "4.5.11", features = ["derive"] }
comrak = "0.26.0"
2024-06-08 19:34:05 +02:00
crossterm = "0.27.0"
2023-07-11 18:43:19 +02:00
directories = "5.0.1"
2024-07-25 18:53:24 +02:00
eyre = "0.6.12"
forgejo-api = "0.4.0"
2024-07-25 18:53:24 +02:00
futures = "0.3.30"
git2 = "0.19.0"
hyper = "1.4.1"
hyper-util = { version = "0.1.6", features = ["tokio", "server", "http1", "http2"] }
open = "5.3.0"
2024-06-01 17:10:26 +02:00
rand = "0.8.5"
semver = { version = "1.0.23", optional = true }
2024-07-25 18:53:24 +02:00
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.120"
2024-06-01 17:10:26 +02:00
sha256 = "1.5.0"
2023-07-11 18:43:19 +02:00
soft_assert = "0.1.1"
2024-07-25 18:53:24 +02:00
time = { version = "0.3.36", features = ["formatting", "local-offset", "macros"] }
tokio = { version = "1.39.1", features = ["full"] }
url = "2.5.2"
uuid = { version = "1.10.0", features = ["v4"] }
2023-07-11 18:43:19 +02:00