forked from kemitix/git-next
Paul Campbell
5a595ec9ee
These crates have been merged into git-next-core, and tombstones published to crates.io.
51 lines
1,012 B
TOML
51 lines
1,012 B
TOML
[package]
|
|
name = "git-next-forge-forgejo"
|
|
version = { workspace = true }
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
description = "Forgejo support for git-next, the trunk-based development manager"
|
|
|
|
[dependencies]
|
|
git-next-core = { workspace = true }
|
|
|
|
# logging
|
|
tracing = { 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 }
|
|
|
|
[dev-dependencies]
|
|
# Testing
|
|
assert2 = { workspace = true }
|
|
rand = { workspace = true }
|
|
|
|
[lints.clippy]
|
|
nursery = { level = "warn", priority = -1 }
|
|
# pedantic = "warn"
|
|
unwrap_used = "warn"
|
|
expect_used = "warn"
|