git-next/crates/git/Cargo.toml

53 lines
1.1 KiB
TOML

[package]
name = "git-next-git"
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
description = "git support for git-next, the trunk-based development manager"
[dependencies]
git-next-core = { workspace = true }
# logging
tracing = { workspace = true }
# git
gix = { workspace = true }
async-trait = { workspace = true }
# fs/network
kxio = { workspace = true }
# TOML parsing
serde_json = { workspace = true }
# webhooks - user notification
serde = { workspace = true }
# Secrets and Password
secrecy = { workspace = true }
# error handling
derive_more = { workspace = true }
derive-with = { workspace = true }
thiserror = { workspace = true }
# Actors
actix = { workspace = true }
mockall = { workspace = true }
[dev-dependencies]
# Testing
assert2 = { workspace = true }
rand = { workspace = true }
pretty_assertions = { workspace = true }
test-log = { workspace = true }
[lints.clippy]
nursery = { level = "warn", priority = -1 }
# pedantic = "warn"
unwrap_used = "warn"
expect_used = "warn"