2024-05-11 19:46:20 +01:00
|
|
|
[package]
|
|
|
|
name = "git-next-git"
|
|
|
|
version = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
git-next-config = { workspace = true }
|
|
|
|
|
|
|
|
# logging
|
|
|
|
# console-subscriber = { workspace = true }
|
|
|
|
tracing = { workspace = true }
|
|
|
|
# tracing-subscriber = { workspace = true }
|
|
|
|
|
|
|
|
# # base64 decoding
|
|
|
|
# base64 = { workspace = true }
|
|
|
|
#
|
|
|
|
# git
|
|
|
|
# # gix = { workspace = true }
|
|
|
|
gix = { workspace = true }
|
2024-05-23 16:50:36 +01:00
|
|
|
async-trait = { workspace = true }
|
2024-05-19 20:02:06 +01:00
|
|
|
|
|
|
|
# fs/network
|
|
|
|
kxio = { workspace = true }
|
2024-05-11 19:46:20 +01:00
|
|
|
|
|
|
|
# # TOML parsing
|
|
|
|
# serde = { workspace = true }
|
2024-05-25 11:25:13 +01:00
|
|
|
serde_json = { workspace = true }
|
2024-05-11 19:46:20 +01:00
|
|
|
# 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 }
|
|
|
|
|
|
|
|
# error handling
|
|
|
|
derive_more = { workspace = true }
|
2024-05-19 20:02:06 +01:00
|
|
|
derive-with = { workspace = true }
|
2024-06-03 08:04:48 +01:00
|
|
|
thiserror = { workspace = true }
|
2024-05-11 19:46:20 +01:00
|
|
|
|
|
|
|
# # file watcher
|
|
|
|
# inotify = { workspace = true }
|
2024-05-25 11:25:13 +01:00
|
|
|
|
|
|
|
# Actors
|
|
|
|
actix = { workspace = true }
|
2024-05-11 19:46:20 +01:00
|
|
|
# actix-rt = { workspace = true }
|
|
|
|
# tokio = { workspace = true }
|
|
|
|
#
|
2024-05-19 20:02:06 +01:00
|
|
|
[dev-dependencies]
|
|
|
|
# Testing
|
|
|
|
assert2 = { workspace = true }
|
2024-06-07 20:01:29 +01:00
|
|
|
rand = { 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"
|