forgejo-cli/Cargo.toml

30 lines
821 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
[dependencies]
2023-11-27 01:39:25 +01:00
auth-git2 = "0.5.3"
2024-06-01 17:10:26 +02:00
base64ct = { version = "1.6.0", features = ["std"] }
2023-07-11 18:43:19 +02:00
clap = { version = "4.3.11", features = ["derive"] }
directories = "5.0.1"
eyre = "0.6.8"
2024-05-31 19:06:07 +02:00
forgejo-api = "0.3.0"
2023-07-11 18:43:19 +02:00
futures = "0.3.28"
git2 = "0.17.2"
2024-06-01 17:10:26 +02:00
hyper = "1.3.1"
hyper-util = { version = "0.1.5", features = ["tokio", "server", "http1", "http2"] }
2023-07-11 19:05:00 +02:00
open = "5.0.0"
2024-06-01 17:10:26 +02:00
rand = "0.8.5"
2023-07-11 18:43:19 +02:00
serde = { version = "1.0.170", features = ["derive"] }
serde_json = "1.0.100"
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-05-01 00:45:43 +02:00
time = { version = "0.3.30", features = ["formatting", "macros"] }
2023-07-11 18:43:19 +02:00
tokio = { version = "1.29.1", features = ["full"] }
url = "2.4.0"
2023-12-11 05:59:04 +01:00
uuid = { version = "1.5.0", features = ["v4"] }
2023-07-11 18:43:19 +02:00