81 lines
1.9 KiB
TOML
81 lines
1.9 KiB
TOML
[package]
|
|
name = "git-next"
|
|
version = { workspace = true }
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
description = "git-next, the trunk-based development manager"
|
|
authors = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
documentation = { workspace = true }
|
|
keywords = { workspace = true }
|
|
categories = { workspace = true }
|
|
|
|
[features]
|
|
default = ["forgejo", "github"]
|
|
forgejo = ["git-next-forge-forgejo"]
|
|
github = ["git-next-forge-github"]
|
|
|
|
[dependencies]
|
|
git-next-core = { workspace = true }
|
|
git-next-forge-forgejo = { workspace = true, optional = true }
|
|
git-next-forge-github = { workspace = true, optional = true }
|
|
|
|
# CLI parsing
|
|
clap = { workspace = true }
|
|
|
|
# fs/network
|
|
kxio = { workspace = true }
|
|
|
|
# logging
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
# git
|
|
async-trait = { workspace = true }
|
|
|
|
# Conventional Commit check
|
|
git-conventional = { workspace = true }
|
|
|
|
# TOML parsing
|
|
toml = { workspace = true }
|
|
|
|
# base64 decoding
|
|
base64 = { workspace = true }
|
|
|
|
# Actors
|
|
actix = { workspace = true }
|
|
actix-rt = { workspace = true }
|
|
|
|
# boilerplate
|
|
derive_more = { workspace = true }
|
|
derive-with = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
# Webhooks
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
ulid = { workspace = true }
|
|
time = { workspace = true }
|
|
secrecy = { workspace = true }
|
|
standardwebhooks = { workspace = true }
|
|
bytes = { workspace = true }
|
|
warp = { workspace = true }
|
|
|
|
# file watcher (linux)
|
|
notify = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
# Testing
|
|
assert2 = { workspace = true }
|
|
test-log = { workspace = true }
|
|
rand = { workspace = true }
|
|
pretty_assertions = { workspace = true }
|
|
mockall = { workspace = true }
|
|
|
|
[lints.clippy]
|
|
nursery = { level = "warn", priority = -1 }
|
|
# pedantic = "warn"
|
|
unwrap_used = "warn"
|
|
expect_used = "warn"
|