Paul Campbell
24251f0c9c
All checks were successful
Rust / build (push) Successful in 1m43s
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
Release Please / Release-plz (push) Successful in 44s
107 lines
2.1 KiB
TOML
107 lines
2.1 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = ["crates/*"]
|
|
|
|
[workspace.package]
|
|
version = "0.13.3"
|
|
|
|
edition = "2021"
|
|
license = "MIT"
|
|
repository = "https://git.kemitix.net/kemitix/git-next"
|
|
authors = ["Paul Campbell <pcampbell@kemitix.net>"]
|
|
rust-version = "1.76"
|
|
description = "trunk-based development manager"
|
|
documentation = "https://git.kemitix.net/kemitix/git-next/src/branch/main/README.md"
|
|
keywords = ["git", "cli", "server", "tool"]
|
|
categories = ["development-tools"]
|
|
|
|
# [workspace.lints.clippy]
|
|
# pedantic = { level = "warn", priority = -1 }
|
|
# nursery = { level = "warn", priority = -1 }
|
|
# unwrap_used = "warn"
|
|
# expect_used = "warn"
|
|
|
|
[workspace.dependencies]
|
|
git-next-core = { path = "crates/core", version = "0.13" }
|
|
git-next-forge-forgejo = { path = "crates/forge-forgejo", version = "0.13" }
|
|
git-next-forge-github = { path = "crates/forge-github", version = "0.13" }
|
|
|
|
# CLI parsing
|
|
clap = { version = "4.5", features = ["cargo", "derive"] }
|
|
|
|
# logging
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
|
|
# base64 decoding
|
|
base64 = "0.22"
|
|
|
|
# sha256 encoding (e.g. verify github webhooks)
|
|
hmac = "0.12"
|
|
sha2 = "0.10"
|
|
hex = "0.4"
|
|
|
|
# git
|
|
# gix = "0.62"
|
|
gix = { version = "0.64", features = [
|
|
"dirwalk",
|
|
"blocking-http-transport-reqwest-rust-tls",
|
|
] }
|
|
async-trait = "0.1"
|
|
git-url-parse = "0.4"
|
|
|
|
# fs/network
|
|
kxio = { version = "1.2" }
|
|
|
|
# TOML parsing
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
toml = "0.8"
|
|
|
|
# Secrets and Password
|
|
secrecy = "0.8"
|
|
|
|
# Conventional Commit check
|
|
git-conventional = "0.12"
|
|
|
|
# Webhooks
|
|
bytes = "1.6"
|
|
ulid = "1.1"
|
|
warp = "0.3"
|
|
time = "0.3"
|
|
standardwebhooks = "1.0"
|
|
|
|
# boilerplate
|
|
derive_more = { version = "1.0.0-beta", features = [
|
|
"as_ref",
|
|
"constructor",
|
|
"display",
|
|
"deref",
|
|
"from",
|
|
] }
|
|
derive-with = "0.5"
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
pike = "0.1"
|
|
|
|
# file watcher
|
|
notify = "6.1"
|
|
|
|
# Actors
|
|
actix = "0.13"
|
|
actix-rt = "2.9"
|
|
tokio = { version = "1.37", features = ["rt", "macros"] }
|
|
|
|
# email
|
|
lettre = "0.11"
|
|
sendmail = "2.0"
|
|
|
|
# desktop notifications
|
|
notifica = "3.0"
|
|
|
|
# Testing
|
|
assert2 = "0.3"
|
|
pretty_assertions = "1.4"
|
|
rand = "0.8"
|
|
mockall = "0.13"
|
|
test-log = "0.2"
|