106 lines
2.5 KiB
TOML
106 lines
2.5 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = ["crates/*"]
|
|
|
|
[workspace.package]
|
|
version = "0.11.0" # Update git-next-* under workspace.dependencies
|
|
|
|
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]
|
|
nursery = { level = "warn", priority = -1 }
|
|
# pedantic = "warn"
|
|
unwrap_used = "warn"
|
|
expect_used = "warn"
|
|
|
|
[workspace.dependencies]
|
|
git-next-core = { path = "crates/core", version = "0.11" }
|
|
git-next-server = { path = "crates/server", version = "0.11" }
|
|
git-next-server-actor = { path = "crates/server-actor", version = "0.11" }
|
|
git-next-forge = { path = "crates/forge", version = "0.11" }
|
|
git-next-forge-forgejo = { path = "crates/forge-forgejo", version = "0.11" }
|
|
git-next-forge-github = { path = "crates/forge-github", version = "0.11" }
|
|
git-next-repo-actor = { path = "crates/repo-actor", version = "0.11" }
|
|
git-next-webhook-actor = { path = "crates/webhook-actor", version = "0.11" }
|
|
git-next-file-watcher-actor = { path = "crates/file-watcher-actor", version = "0.11" }
|
|
|
|
# CLI parsing
|
|
clap = { version = "4.5", features = ["cargo", "derive"] }
|
|
|
|
# logging
|
|
console-subscriber = "0.3"
|
|
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"
|
|
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.6", features = [
|
|
"as_ref",
|
|
"constructor",
|
|
"display",
|
|
"deref",
|
|
"from",
|
|
] }
|
|
derive-with = "0.5"
|
|
thiserror = "1.0"
|
|
pike = "0.1"
|
|
|
|
# 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"
|
|
mockall = "0.12"
|
|
test-log = "0.2"
|