66 lines
1.3 KiB
TOML
66 lines
1.3 KiB
TOML
[package]
|
|
name = "git-next-repo-actor"
|
|
version = { workspace = true }
|
|
edition = { workspace = true }
|
|
|
|
[features]
|
|
default = ["forgejo", "github"]
|
|
forgejo = []
|
|
github = []
|
|
|
|
[dependencies]
|
|
git-next-config = { workspace = true }
|
|
git-next-git = { workspace = true }
|
|
git-next-forge = { workspace = true }
|
|
git-next-actor-macros = { 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 }
|
|
|
|
# Conventional Commit check
|
|
git-conventional = { workspace = true }
|
|
|
|
# Webhooks
|
|
bytes = { workspace = true }
|
|
ulid = { workspace = true }
|
|
|
|
# boilerplate
|
|
derive_more = { workspace = true }
|
|
derive-with = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
# Actors
|
|
actix = { workspace = true }
|
|
actix-rt = { workspace = true }
|
|
tokio = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
# Testing
|
|
assert2 = { workspace = true }
|
|
rand = { workspace = true }
|
|
pretty_assertions = { workspace = true }
|
|
mockall = { workspace = true }
|
|
test-log = { workspace = true }
|
|
|
|
[lints.clippy]
|
|
nursery = { level = "warn", priority = -1 }
|
|
# pedantic = "warn"
|
|
unwrap_used = "warn"
|
|
expect_used = "warn"
|