2024-05-11 18:57:18 +01:00
|
|
|
[package]
|
|
|
|
name = "git-next-server"
|
|
|
|
version = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["forgejo"]
|
|
|
|
forgejo = []
|
|
|
|
github = []
|
|
|
|
|
|
|
|
[dependencies]
|
2024-05-11 19:46:20 +01:00
|
|
|
git-next-config = { workspace = true }
|
|
|
|
git-next-git = { workspace = true }
|
|
|
|
|
2024-05-11 18:57:18 +01:00
|
|
|
# logging
|
|
|
|
console-subscriber = { workspace = true }
|
|
|
|
tracing = { workspace = true }
|
|
|
|
tracing-subscriber = { 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 }
|
|
|
|
warp = { workspace = true }
|
|
|
|
|
2024-05-18 22:16:17 +01:00
|
|
|
# boilerplate
|
2024-05-11 18:57:18 +01:00
|
|
|
derive_more = { workspace = true }
|
|
|
|
|
|
|
|
# file watcher
|
|
|
|
inotify = { workspace = true }
|
|
|
|
|
|
|
|
# Actors
|
|
|
|
actix = { workspace = true }
|
|
|
|
actix-rt = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
# Testing
|
|
|
|
assert2 = { workspace = true }
|
|
|
|
|
|
|
|
[lints.clippy]
|
|
|
|
nursery = { level = "warn", priority = -1 }
|
|
|
|
# pedantic = "warn"
|
|
|
|
unwrap_used = "warn"
|
|
|
|
expect_used = "warn"
|