2024-05-22 08:41:30 +01:00
|
|
|
[package]
|
2024-05-23 16:04:38 +01:00
|
|
|
name = "git-next-forge"
|
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 = "Generic forge 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-23 19:41:50 +01:00
|
|
|
forgejo = ["git-next-forge-forgejo"]
|
2024-05-25 11:25:13 +01:00
|
|
|
github = ["git-next-forge-github"]
|
2024-05-22 08:41:30 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2024-07-25 09:02:43 +01:00
|
|
|
git-next-core = { workspace = true }
|
2024-05-22 08:41:30 +01:00
|
|
|
git-next-git = { workspace = true }
|
2024-05-23 19:41:50 +01:00
|
|
|
git-next-forge-forgejo = { workspace = true, optional = true }
|
2024-05-25 11:25:13 +01:00
|
|
|
git-next-forge-github = { workspace = true, optional = 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 }
|
|
|
|
|
|
|
|
# Webhooks
|
|
|
|
bytes = { workspace = true }
|
|
|
|
ulid = { workspace = true }
|
|
|
|
|
|
|
|
# boilerplate
|
|
|
|
derive_more = { workspace = true }
|
|
|
|
|
|
|
|
# # Actors
|
|
|
|
tokio = { workspace = true }
|
|
|
|
|
|
|
|
[lints.clippy]
|
|
|
|
nursery = { level = "warn", priority = -1 }
|
|
|
|
# pedantic = "warn"
|
|
|
|
unwrap_used = "warn"
|
|
|
|
expect_used = "warn"
|