git-next/Cargo.toml

109 lines
2.2 KiB
TOML
Raw Normal View History

[workspace]
resolver = "2"
members = [
"crates/cli",
"crates/server",
2024-06-29 11:14:09 +01:00
"crates/server-actor",
"crates/config",
"crates/git",
"crates/forge",
2024-05-23 19:36:05 +01:00
"crates/forge-forgejo",
"crates/forge-github",
"crates/repo-actor",
2024-06-29 08:20:56 +01:00
"crates/webhook-actor",
2024-06-29 10:49:12 +01:00
"crates/actor-macros",
"crates/file-watcher-actor",
]
2024-05-11 18:57:18 +01:00
[workspace.package]
chore: Release 0.7.1 ### Bug Fixes - Github: use correct url to check CI status ([46e2871](https://git.kemitix.net/kemitix/git-next/commit/46e2871e17677745ef6d11e7e3d50014d6da1e1d)) - Github: as soon as any check fails, ignore any pending ([7b280a2](https://git.kemitix.net/kemitix/git-next/commit/7b280a2a0a3090ad6726fe467d2c52d864a78fb9)) ### Documentation - Update installation instructions ([044790a](https://git.kemitix.net/kemitix/git-next/commit/044790a0194bf67e850ac6b04ece248bdc2c3c2f)) - Flesh out and update README ([8d42945](https://git.kemitix.net/kemitix/git-next/commit/8d42945c373dab179ea4ac9c0527f2cbcdc9893c)) - Fix typos and clarifications ([9462957](https://git.kemitix.net/kemitix/git-next/commit/9462957c5e09e9fef1db977cd0c46f01395801bc)) ### Miscellaneous Tasks - Remove unused dependencies ([235aee8](https://git.kemitix.net/kemitix/git-next/commit/235aee8b11e07926d8b507d4d4b5444a0b0c354a)) - Add grcov-coverage as an alternate report generation recipe ([d67b821](https://git.kemitix.net/kemitix/git-next/commit/d67b821130d1b73765ffcd60952a35141a4b8d3d)) - Ignore coverage metadata (profraw files) ([8609652](https://git.kemitix.net/kemitix/git-next/commit/86096529284ab1eea72b864cd33b68845eae7c7d)) ### Refactor - Config: use thiserror and move tests about ([0b8e41a](https://git.kemitix.net/kemitix/git-next/commit/0b8e41a8ecca1ee8f565478f7b275b8228df123c)) - Git: use thiserror and cleanup errors ([621e599](https://git.kemitix.net/kemitix/git-next/commit/621e599b31b98b359bbe7afa2c239fa9a91c6dc7)) - Server: use thiserror ([e29c274](https://git.kemitix.net/kemitix/git-next/commit/e29c274aaf14c68761bf68e6a054985eba567fa5)) ### Testing - Add more tests to config crate ([1010eae](https://git.kemitix.net/kemitix/git-next/commit/1010eaec649329c4745740b25298824bfade43d5)) - Add more tests to forge crate ([98839c8](https://git.kemitix.net/kemitix/git-next/commit/98839c8a00148b1c6bfb3cd26f0780d1e66d451c)) - Add more tests to forge-forgejo crate ([c189aa3](https://git.kemitix.net/kemitix/git-next/commit/c189aa3ad3fe05d16b0310820c3f43d883db0ba7)) - Add more tests to forge-github crate ([309e523](https://git.kemitix.net/kemitix/git-next/commit/309e523cfe35d00fecdb61575bc339b1bf35024f))
2024-06-06 08:07:25 +01:00
version = "0.7.1"
2024-05-11 18:57:18 +01:00
edition = "2021"
2024-04-06 17:39:56 +01:00
[workspace.lints.clippy]
nursery = { level = "warn", priority = -1 }
# pedantic = "warn"
unwrap_used = "warn"
expect_used = "warn"
2024-04-06 17:39:56 +01:00
[workspace.dependencies]
git-next-server = { path = "crates/server" }
2024-06-29 11:14:09 +01:00
git-next-server-actor = { path = "crates/server-actor" }
git-next-config = { path = "crates/config" }
git-next-git = { path = "crates/git" }
git-next-forge = { path = "crates/forge" }
2024-05-23 19:36:05 +01:00
git-next-forge-forgejo = { path = "crates/forge-forgejo" }
git-next-forge-github = { path = "crates/forge-github" }
git-next-repo-actor = { path = "crates/repo-actor" }
2024-06-29 08:20:56 +01:00
git-next-webhook-actor = { path = "crates/webhook-actor" }
git-next-file-watcher-actor = { path = "crates/file-watcher-actor" }
2024-06-29 10:49:12 +01:00
git-next-actor-macros = { path = "crates/actor-macros" }
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 18:52:17 +01:00
# logging
console-subscriber = "0.3"
2024-04-06 18:52:17 +01:00
tracing = "0.1"
tracing-subscriber = "0.3"
2024-04-09 10:05:34 +01:00
# 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"
2024-04-08 20:33:52 +01:00
# fs/network
2024-05-17 18:50:18 +01:00
kxio = { version = "1.2" }
2024-04-08 20:33:52 +01:00
2024-04-07 12:28:53 +01:00
# TOML parsing
2024-04-07 13:20:48 +01:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2024-04-07 12:28:53 +01:00
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"
2024-05-16 14:45:25 +01:00
# boilerplate
2024-05-14 16:28:17 +01:00
derive_more = { version = "1.0.0-beta.6", features = [
"as_ref",
"constructor",
2024-05-14 16:28:17 +01:00
"display",
"deref",
"from",
2024-05-14 16:28:17 +01:00
] }
derive-with = "0.5"
thiserror = "1.0"
2024-05-16 14:45:25 +01:00
# file watcher
inotify = "0.10"
2024-04-07 19:27:07 +01:00
# Actors
actix = "0.13"
2024-04-07 20:14:33 +01:00
actix-rt = "2.9"
tokio = { version = "1.37", features = ["rt", "macros"] }
2024-04-07 19:27:07 +01:00
# Testing
assert2 = "0.3"
2024-06-01 11:15:04 +01:00
pretty_assertions = "1.4"
rand = "0.8"
mockall = "0.12"
test-log = "0.2"