2024-05-22 08:41:30 +01:00
|
|
|
[package]
|
|
|
|
name = "git-next-repo-actor"
|
2024-07-14 16:37:50 +01:00
|
|
|
version = { workspace = true }
|
2024-05-22 08:41:30 +01:00
|
|
|
edition = { workspace = true }
|
2024-07-14 10:40:34 +01:00
|
|
|
license = { workspace = true }
|
2024-07-14 13:32:07 +01:00
|
|
|
repository = { workspace = true }
|
|
|
|
description = "Repository support for git-next, the trunk-based development manager"
|
2024-05-22 08:41:30 +01:00
|
|
|
|
|
|
|
[features]
|
2024-05-25 11:25:13 +01:00
|
|
|
default = ["forgejo", "github"]
|
2024-05-22 08:41:30 +01:00
|
|
|
forgejo = []
|
|
|
|
github = []
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
git-next-config = { workspace = true }
|
|
|
|
git-next-git = { workspace = true }
|
2024-05-23 16:04:38 +01:00
|
|
|
git-next-forge = { workspace = true }
|
2024-06-29 10:49:12 +01:00
|
|
|
git-next-actor-macros = { workspace = true }
|
2024-05-22 08:41:30 +01:00
|
|
|
|
|
|
|
# logging
|
|
|
|
tracing = { workspace = true }
|
|
|
|
|
|
|
|
# base64 decoding
|
|
|
|
base64 = { workspace = true }
|
|
|
|
|
|
|
|
# git
|
|
|
|
async-trait = { workspace = true }
|
|
|
|
|
|
|
|
# fs/network
|
|
|
|
kxio = { workspace = true }
|
|
|
|
|
|
|
|
# TOML parsing
|
|
|
|
serde = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
toml = { workspace = true }
|
|
|
|
|
|
|
|
# Secrets and Password
|
|
|
|
secrecy = { workspace = true }
|
|
|
|
|
|
|
|
# Conventional Commit check
|
|
|
|
git-conventional = { workspace = true }
|
|
|
|
|
|
|
|
# Webhooks
|
|
|
|
bytes = { workspace = true }
|
|
|
|
ulid = { workspace = true }
|
2024-07-21 13:44:44 +01:00
|
|
|
time = { workspace = true }
|
2024-05-22 08:41:30 +01:00
|
|
|
|
|
|
|
# boilerplate
|
|
|
|
derive_more = { workspace = true }
|
2024-06-27 21:10:41 +01:00
|
|
|
derive-with = { workspace = true }
|
2024-06-19 07:03:08 +01:00
|
|
|
thiserror = { workspace = true }
|
2024-05-22 08:41:30 +01:00
|
|
|
|
|
|
|
# Actors
|
|
|
|
actix = { workspace = true }
|
|
|
|
actix-rt = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
|
|
|
2024-06-19 07:03:08 +01:00
|
|
|
[dev-dependencies]
|
|
|
|
# Testing
|
|
|
|
assert2 = { workspace = true }
|
|
|
|
rand = { workspace = true }
|
|
|
|
pretty_assertions = { workspace = true }
|
|
|
|
mockall = { workspace = true }
|
|
|
|
test-log = { workspace = true }
|
|
|
|
|
2024-05-22 08:41:30 +01:00
|
|
|
[lints.clippy]
|
|
|
|
nursery = { level = "warn", priority = -1 }
|
|
|
|
# pedantic = "warn"
|
|
|
|
unwrap_used = "warn"
|
|
|
|
expect_used = "warn"
|