2024-05-11 11:11:13 +01:00
|
|
|
[workspace]
|
|
|
|
resolver = "2"
|
2024-07-14 10:31:23 +01:00
|
|
|
members = ["crates/*"]
|
2024-05-11 18:57:18 +01:00
|
|
|
|
|
|
|
[workspace.package]
|
2024-09-12 20:46:24 +01:00
|
|
|
version = "0.13.10"
|
2024-07-16 18:14:32 +01:00
|
|
|
|
2024-05-11 18:57:18 +01:00
|
|
|
edition = "2021"
|
2024-07-14 10:40:34 +01:00
|
|
|
license = "MIT"
|
2024-07-14 13:32:07 +01:00
|
|
|
repository = "https://git.kemitix.net/kemitix/git-next"
|
2024-07-14 20:47:19 +01:00
|
|
|
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"]
|
|
|
|
|
2024-08-05 07:39:38 +01:00
|
|
|
# [workspace.lints.clippy]
|
|
|
|
# pedantic = { level = "warn", priority = -1 }
|
|
|
|
# nursery = { level = "warn", priority = -1 }
|
|
|
|
# unwrap_used = "warn"
|
|
|
|
# expect_used = "warn"
|
2024-04-06 17:39:56 +01:00
|
|
|
|
2024-05-11 11:11:13 +01:00
|
|
|
[workspace.dependencies]
|
2024-08-02 08:58:19 +01:00
|
|
|
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" }
|
2024-07-28 20:36:04 +01:00
|
|
|
|
2024-08-10 08:20:49 +01:00
|
|
|
# TUI
|
|
|
|
ratatui = "0.28"
|
2024-08-29 08:31:03 +01:00
|
|
|
directories = "5.0"
|
|
|
|
lazy_static = "1.5"
|
|
|
|
color-eyre = "0.6"
|
|
|
|
tui-scrollview = "0.4"
|
2024-08-31 14:17:28 +01:00
|
|
|
regex = "1.10"
|
2024-08-10 08:20:49 +01:00
|
|
|
|
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
|
|
|
|
tracing = "0.1"
|
2024-08-12 21:25:24 +01:00
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
tracing-error = "0.2.0"
|
2024-04-06 18:52:17 +01:00
|
|
|
|
2024-04-09 10:05:34 +01:00
|
|
|
# base64 decoding
|
|
|
|
base64 = "0.22"
|
|
|
|
|
2024-05-25 11:25:13 +01:00
|
|
|
# sha256 encoding (e.g. verify github webhooks)
|
|
|
|
hmac = "0.12"
|
|
|
|
sha2 = "0.10"
|
|
|
|
hex = "0.4"
|
|
|
|
|
2024-04-10 15:18:48 +01:00
|
|
|
# git
|
2024-08-23 08:12:46 +01:00
|
|
|
gix = { version = "0.66", features = [
|
2024-05-26 16:51:51 +01:00
|
|
|
"dirwalk",
|
2024-04-27 15:23:42 +01:00
|
|
|
"blocking-http-transport-reqwest-rust-tls",
|
|
|
|
] }
|
2024-04-16 22:21:55 +01:00
|
|
|
async-trait = "0.1"
|
2024-07-06 19:55:39 +01:00
|
|
|
git-url-parse = "0.4"
|
2024-04-10 15:18:48 +01:00
|
|
|
|
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"] }
|
2024-04-14 15:46:21 +01:00
|
|
|
serde_json = "1.0"
|
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-07-21 13:44:44 +01:00
|
|
|
time = "0.3"
|
|
|
|
standardwebhooks = "1.0"
|
2024-04-13 16:16:09 +01:00
|
|
|
|
2024-05-16 14:45:25 +01:00
|
|
|
# boilerplate
|
2024-08-31 09:28:20 +01:00
|
|
|
bon = "2.0"
|
2024-08-02 11:01:09 +01:00
|
|
|
derive_more = { version = "1.0.0-beta", features = [
|
2024-05-15 21:01:19 +01:00
|
|
|
"as_ref",
|
2024-05-15 07:55:05 +01:00
|
|
|
"constructor",
|
2024-05-14 16:28:17 +01:00
|
|
|
"display",
|
|
|
|
"deref",
|
2024-05-15 07:55:05 +01:00
|
|
|
"from",
|
2024-05-14 16:28:17 +01:00
|
|
|
] }
|
2024-05-19 20:02:06 +01:00
|
|
|
derive-with = "0.5"
|
2024-07-30 10:52:05 +01:00
|
|
|
anyhow = "1.0"
|
2024-06-03 07:38:59 +01:00
|
|
|
thiserror = "1.0"
|
2024-07-06 19:55:39 +01:00
|
|
|
pike = "0.1"
|
2024-05-16 14:45:25 +01:00
|
|
|
|
2024-08-06 20:48:53 +01:00
|
|
|
# iters
|
|
|
|
take-until = "0.2"
|
|
|
|
|
2024-05-07 19:32:15 +01:00
|
|
|
# file watcher
|
2024-07-28 15:37:58 +01:00
|
|
|
notify = "6.1"
|
2024-05-07 19:32:15 +01:00
|
|
|
|
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-06-04 18:30:11 +01:00
|
|
|
tokio = { version = "1.37", features = ["rt", "macros"] }
|
2024-04-07 19:27:07 +01:00
|
|
|
|
2024-08-01 19:48:59 +01:00
|
|
|
# email
|
|
|
|
lettre = "0.11"
|
|
|
|
sendmail = "2.0"
|
|
|
|
|
2024-08-02 22:56:03 +01:00
|
|
|
# desktop notifications
|
|
|
|
notifica = "3.0"
|
|
|
|
|
2024-04-07 11:52:47 +01:00
|
|
|
# Testing
|
2024-04-16 22:21:55 +01:00
|
|
|
assert2 = "0.3"
|
2024-06-01 11:15:04 +01:00
|
|
|
pretty_assertions = "1.4"
|
2024-06-01 14:49:28 +01:00
|
|
|
rand = "0.8"
|
2024-07-28 13:58:32 +01:00
|
|
|
mockall = "0.13"
|
2024-06-19 07:03:08 +01:00
|
|
|
test-log = "0.2"
|
2024-08-10 20:08:07 +01:00
|
|
|
rstest = { version = "0.22", features = ["async-timeout"] }
|