2024-05-11 19:46:20 +01:00
|
|
|
[package]
|
|
|
|
name = "git-next-config"
|
|
|
|
version = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
|
|
|
|
|
|
|
[features]
|
2024-05-25 11:25:13 +01:00
|
|
|
default = ["forgejo", "github"]
|
2024-05-11 19:46:20 +01:00
|
|
|
forgejo = []
|
|
|
|
github = []
|
|
|
|
|
|
|
|
[dependencies]
|
2024-05-22 08:41:30 +01:00
|
|
|
# logging
|
2024-05-11 19:46:20 +01:00
|
|
|
# console-subscriber = { workspace = true }
|
2024-05-22 08:41:30 +01:00
|
|
|
tracing = { workspace = true }
|
2024-05-11 19:46:20 +01:00
|
|
|
# tracing-subscriber = { workspace = true }
|
|
|
|
|
|
|
|
# # base64 decoding
|
|
|
|
# base64 = { workspace = true }
|
|
|
|
#
|
|
|
|
# # git
|
|
|
|
# # gix = { workspace = true }
|
|
|
|
# gix = { workspace = true }
|
|
|
|
# async-trait = { workspace = true }
|
2024-05-22 08:41:30 +01:00
|
|
|
|
|
|
|
# fs/network
|
|
|
|
kxio = { workspace = true }
|
2024-05-11 19:46:20 +01:00
|
|
|
|
|
|
|
# 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 }
|
|
|
|
#
|
2024-05-25 11:25:13 +01:00
|
|
|
# Webhooks
|
2024-05-11 19:46:20 +01:00
|
|
|
# bytes = { workspace = true }
|
2024-05-25 11:25:13 +01:00
|
|
|
ulid = { workspace = true }
|
2024-05-11 19:46:20 +01:00
|
|
|
# warp = { workspace = true }
|
2024-05-19 20:02:06 +01:00
|
|
|
|
|
|
|
# boilerplate
|
2024-05-12 22:27:20 +01:00
|
|
|
derive_more = { workspace = true }
|
2024-05-19 20:02:06 +01:00
|
|
|
derive-with = { workspace = true }
|
2024-06-03 07:38:59 +01:00
|
|
|
thiserror = { workspace = true }
|
2024-05-11 19:46:20 +01:00
|
|
|
#
|
|
|
|
# # file watcher
|
|
|
|
# inotify = { workspace = true }
|
2024-05-22 08:41:30 +01:00
|
|
|
|
|
|
|
# Actors
|
|
|
|
actix = { workspace = true }
|
2024-05-11 19:46:20 +01:00
|
|
|
# actix-rt = { workspace = true }
|
|
|
|
# tokio = { workspace = true }
|
2024-05-22 08:41:30 +01:00
|
|
|
|
2024-05-14 07:59:31 +01:00
|
|
|
[dev-dependencies]
|
2024-05-11 19:46:20 +01:00
|
|
|
# # Testing
|
2024-05-14 07:59:31 +01:00
|
|
|
assert2 = { workspace = true }
|
2024-06-01 11:15:04 +01:00
|
|
|
pretty_assertions = { workspace = true }
|
2024-05-11 19:46:20 +01:00
|
|
|
|
|
|
|
[lints.clippy]
|
|
|
|
nursery = { level = "warn", priority = -1 }
|
|
|
|
# pedantic = "warn"
|
|
|
|
unwrap_used = "warn"
|
|
|
|
expect_used = "warn"
|