Paul Campbell
f0daac76b4
All checks were successful
Rust / build (push) Successful in 1m17s
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
Release Please / Release-plz (push) Successful in 42s
Closes kemitix/git-next#141
88 lines
2.1 KiB
TOML
88 lines
2.1 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", "tui"]
|
|
forgejo = ["git-next-forge-forgejo"]
|
|
github = ["git-next-forge-github"]
|
|
tui = ["ratatui"]
|
|
|
|
[dependencies]
|
|
git-next-core = { workspace = true }
|
|
git-next-forge-forgejo = { workspace = true, optional = true }
|
|
git-next-forge-github = { workspace = true, optional = true }
|
|
|
|
# TUI
|
|
ratatui = { workspace = true, optional = true }
|
|
|
|
# CLI parsing
|
|
clap = { workspace = true }
|
|
|
|
# fs/network
|
|
kxio = { workspace = true }
|
|
|
|
# logging
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
# Conventional Commit check
|
|
git-conventional = { workspace = true }
|
|
|
|
# TOML parsing
|
|
toml = { 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_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 }
|
|
|
|
# email
|
|
lettre = { workspace = true }
|
|
sendmail = { workspace = true }
|
|
|
|
# desktop notifications
|
|
notifica = { 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 = { level = "warn", priority = -1 }
|
|
unwrap_used = "warn"
|
|
expect_used = "warn"
|
|
|
|
[lints.rust]
|
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }
|