2024-04-06 17:39:56 +01:00
|
|
|
[package]
|
|
|
|
name = "git-next"
|
2024-04-11 23:03:15 +01:00
|
|
|
version = "0.1.2"
|
2024-04-06 17:39:56 +01:00
|
|
|
edition = "2021"
|
|
|
|
|
2024-04-12 20:53:55 +01:00
|
|
|
[features]
|
|
|
|
default = ["forgejo"]
|
|
|
|
forgejo = []
|
|
|
|
|
2024-04-06 17:39:56 +01:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-04-06 18:52:17 +01:00
|
|
|
# CLI parsing
|
2024-04-06 18:26:08 +01:00
|
|
|
clap = { version = "4.5", features = ["cargo", "derive"] }
|
2024-04-06 17:47:30 +01:00
|
|
|
|
2024-04-06 18:52:17 +01:00
|
|
|
# logging
|
|
|
|
console-subscriber = "0.2"
|
|
|
|
tracing = "0.1"
|
|
|
|
tracing-subscriber = "0.3"
|
|
|
|
|
2024-04-09 10:05:34 +01:00
|
|
|
# base64 decoding
|
|
|
|
base64 = "0.22"
|
|
|
|
|
2024-04-10 15:18:48 +01:00
|
|
|
# git
|
2024-04-13 14:09:35 +01:00
|
|
|
gix = "0.62"
|
2024-04-10 15:18:48 +01:00
|
|
|
|
2024-04-08 20:33:52 +01:00
|
|
|
# fs/network
|
2024-04-10 07:37:06 +01:00
|
|
|
kxio = "0.1" # { git = "https://git.kemitix.net/kemitix/kxio.git", branch = "main" }
|
2024-04-08 20:33:52 +01:00
|
|
|
|
2024-04-07 11:52:47 +01:00
|
|
|
# fs
|
|
|
|
tempfile = "3.10"
|
|
|
|
|
2024-04-07 12:28:53 +01:00
|
|
|
# TOML parsing
|
2024-04-07 13:20:48 +01:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2024-04-07 12:28:53 +01:00
|
|
|
toml = "0.8"
|
|
|
|
|
2024-04-12 15:27:03 +01:00
|
|
|
# Secrets and Password
|
|
|
|
secrecy = "0.8"
|
|
|
|
|
2024-04-12 16:21:45 +01:00
|
|
|
# Conventional Commit check
|
|
|
|
git-conventional = "0.12"
|
|
|
|
|
2024-04-13 16:16:09 +01:00
|
|
|
# Webhooks
|
|
|
|
bytes = "1.6"
|
|
|
|
ulid = "1.1"
|
|
|
|
warp = "0.3"
|
|
|
|
|
2024-04-07 13:46:45 +01:00
|
|
|
# error handling
|
|
|
|
terrors = "0.3"
|
|
|
|
|
2024-04-07 19:27:07 +01:00
|
|
|
# Actors
|
|
|
|
actix = "0.13"
|
2024-04-07 20:14:33 +01:00
|
|
|
actix-rt = "2.9"
|
2024-04-10 22:40:33 +01:00
|
|
|
tokio = { version = "1.37", features = ["full"] }
|
2024-04-07 19:27:07 +01:00
|
|
|
|
2024-04-06 17:47:30 +01:00
|
|
|
[dev-dependencies]
|
2024-04-07 11:52:47 +01:00
|
|
|
# Testing
|
2024-04-08 12:03:19 +01:00
|
|
|
# assert2 = "0.3"
|
2024-04-07 11:52:47 +01:00
|
|
|
test-log = "0.2"
|
2024-04-07 13:21:55 +01:00
|
|
|
anyhow = "1.0"
|
2024-04-07 11:52:47 +01:00
|
|
|
|
2024-04-06 17:47:30 +01:00
|
|
|
[package.metadata.bin]
|
2024-04-07 12:07:17 +01:00
|
|
|
# Conventional commits githook
|
2024-04-06 17:47:30 +01:00
|
|
|
cc-cli = { version = "0.1" }
|