Paul Campbell
ad358ad7c2
All checks were successful
Rust / build (push) Successful in 2m17s
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
Release Please / Release-plz (push) Successful in 37s
54 lines
1.2 KiB
TOML
54 lines
1.2 KiB
TOML
[package]
|
|
name = "git-next-forge-github"
|
|
version = { workspace = true }
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
description = "GitHub support for git-next, the trunk-based development manager"
|
|
|
|
[lints.clippy]
|
|
nursery = { level = "warn", priority = -1 }
|
|
pedantic = { level = "warn", priority = -1 }
|
|
unwrap_used = "warn"
|
|
expect_used = "warn"
|
|
|
|
[lints.rust]
|
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }
|
|
|
|
[dependencies]
|
|
git-next-core = { workspace = true }
|
|
|
|
# own version for UserAgent requests to github.com
|
|
clap = { workspace = true }
|
|
|
|
# logging
|
|
tracing = { workspace = true }
|
|
|
|
# sha256 encoding (e.g. verify github webhooks)
|
|
hmac = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
hex = { workspace = true }
|
|
|
|
# git
|
|
async-trait = { workspace = true }
|
|
|
|
# fs/network
|
|
kxio = { workspace = true }
|
|
|
|
# TOML parsing
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
# Secrets and Password
|
|
secrecy = { workspace = true }
|
|
|
|
# boilerplate
|
|
derive_more = { workspace = true }
|
|
|
|
# # Actors
|
|
tokio = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
# Testing
|
|
assert2 = { workspace = true }
|
|
rand = { workspace = true }
|