git-next/crates/forge-forgejo/Cargo.toml

44 lines
932 B
TOML
Raw Normal View History

2024-05-23 19:36:05 +01:00
[package]
name = "git-next-forge-forgejo"
version = { workspace = true }
2024-05-23 19:36:05 +01:00
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
description = "Forgejo support for git-next, the trunk-based development manager"
2024-05-23 19:36:05 +01:00
[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)'] }
2024-05-23 19:36:05 +01:00
[dependencies]
git-next-core = { workspace = true }
2024-05-23 19:36:05 +01:00
# logging
tracing = { 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 }
# # Actors
tokio = { workspace = true }
[dev-dependencies]
# Testing
assert2 = { workspace = true }
rand = { workspace = true }