Paul Campbell
ea9a858f48
All checks were successful
Rust / build (push) Successful in 1m17s
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
ci/woodpecker/tag/push-next Pipeline was successful
ci/woodpecker/tag/cron-docker-builder Pipeline was successful
ci/woodpecker/tag/tag-created Pipeline was successful
### Bug Fixes - Github: use correct url to check CI status ([46e2871
](46e2871e17
)) - Github: as soon as any check fails, ignore any pending ([7b280a2
](7b280a2a0a
)) ### Documentation - Update installation instructions ([044790a
](044790a019
)) - Flesh out and update README ([8d42945
](8d42945c37
)) - Fix typos and clarifications ([9462957
](9462957c5e
)) ### Miscellaneous Tasks - Remove unused dependencies ([235aee8
](235aee8b11
)) - Add grcov-coverage as an alternate report generation recipe ([d67b821
](d67b821130
)) - Ignore coverage metadata (profraw files) ([8609652
](8609652928
)) ### Refactor - Config: use thiserror and move tests about ([0b8e41a
](0b8e41a8ec
)) - Git: use thiserror and cleanup errors ([621e599
](621e599b31
)) - Server: use thiserror ([e29c274
](e29c274aaf
)) ### Testing - Add more tests to config crate ([1010eae
](1010eaec64
)) - Add more tests to forge crate ([98839c8
](98839c8a00
)) - Add more tests to forge-forgejo crate ([c189aa3
](c189aa3ad3
)) - Add more tests to forge-github crate ([309e523
](309e523cfe
))
98 lines
1.8 KiB
TOML
98 lines
1.8 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"crates/cli",
|
|
"crates/server",
|
|
"crates/config",
|
|
"crates/git",
|
|
"crates/forge",
|
|
"crates/forge-forgejo",
|
|
"crates/forge-github",
|
|
"crates/repo-actor",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.7.1"
|
|
edition = "2021"
|
|
|
|
[workspace.lints.clippy]
|
|
nursery = { level = "warn", priority = -1 }
|
|
# pedantic = "warn"
|
|
unwrap_used = "warn"
|
|
expect_used = "warn"
|
|
|
|
[workspace.dependencies]
|
|
git-next-server = { path = "crates/server" }
|
|
git-next-config = { path = "crates/config" }
|
|
git-next-git = { path = "crates/git" }
|
|
git-next-forge = { path = "crates/forge" }
|
|
git-next-forge-forgejo = { path = "crates/forge-forgejo" }
|
|
git-next-forge-github = { path = "crates/forge-github" }
|
|
git-next-repo-actor = { path = "crates/repo-actor" }
|
|
|
|
# CLI parsing
|
|
clap = { version = "4.5", features = ["cargo", "derive"] }
|
|
|
|
# logging
|
|
console-subscriber = "0.2"
|
|
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.63", features = [
|
|
"dirwalk",
|
|
"blocking-http-transport-reqwest-rust-tls",
|
|
] }
|
|
async-trait = "0.1"
|
|
|
|
# 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"
|
|
|
|
# boilerplate
|
|
derive_more = { version = "1.0.0-beta.6", features = [
|
|
"as_ref",
|
|
"constructor",
|
|
"display",
|
|
"deref",
|
|
"from",
|
|
] }
|
|
derive-with = "0.5"
|
|
thiserror = "1.0"
|
|
|
|
# file watcher
|
|
inotify = "0.10"
|
|
|
|
# Actors
|
|
actix = "0.13"
|
|
actix-rt = "2.9"
|
|
tokio = { version = "1.37", features = ["rt", "macros"] }
|
|
|
|
# Testing
|
|
assert2 = "0.3"
|
|
pretty_assertions = "1.4"
|
|
rand = "0.8"
|