54 lines
989 B
TOML
54 lines
989 B
TOML
|
[package]
|
||
|
name = "git-next-forge-github"
|
||
|
version = { workspace = true }
|
||
|
edition = { workspace = true }
|
||
|
|
||
|
[dependencies]
|
||
|
git-next-config = { workspace = true }
|
||
|
git-next-git = { workspace = true }
|
||
|
|
||
|
# own version
|
||
|
clap = { workspace = true }
|
||
|
|
||
|
# logging
|
||
|
tracing = { workspace = true }
|
||
|
|
||
|
# sha256 encoding (e.g. verify github webhooks)
|
||
|
hmac = { workspace = true }
|
||
|
sha2 = { workspace = true }
|
||
|
hex = { 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"
|