2024-05-23 19:36:05 +01:00
|
|
|
[package]
|
|
|
|
name = "git-next-forge-forgejo"
|
2024-07-14 16:37:50 +01:00
|
|
|
version = { workspace = true }
|
2024-05-23 19:36:05 +01:00
|
|
|
edition = { workspace = true }
|
2024-07-14 10:40:34 +01:00
|
|
|
license = { workspace = true }
|
2024-07-14 13:32:07 +01:00
|
|
|
repository = { workspace = true }
|
|
|
|
description = "Forgejo support for git-next, the trunk-based development manager"
|
2024-05-23 19:36:05 +01:00
|
|
|
|
2024-08-06 16:15:56 +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]
|
2024-07-25 09:02:43 +01:00
|
|
|
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 }
|
2024-06-01 14:49:28 +01:00
|
|
|
rand = { workspace = true }
|