git-next/crates/core/Cargo.toml
Renovate Bot be9993029e
Some checks failed
Test / build (map[name:stable]) (push) Successful in 10m35s
Test / build (map[name:nightly]) (push) Successful in 11m50s
Release Please / Release-plz (push) Successful in 49s
Release Please / Docker image (push) Failing after 1m47s
chore(deps): update git.kemitix.net/kemitix/rust docker tag to v4
2025-01-16 15:57:21 +00:00

70 lines
1.4 KiB
TOML

[package]
name = "git-next-core"
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
description = "core for git-next, the trunk-based development manager"
[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)'] }
[features]
default = ["forgejo", "github"]
forgejo = []
github = []
[dependencies]
native-tls = { workspace = true }
# logging
tracing = { workspace = true }
# fs/network
kxio = { workspace = true }
# TOML parsing
serde = { workspace = true }
toml = { workspace = true }
# Secrets and Password
secrecy = { workspace = true }
# Git
gix = { workspace = true }
git-url-parse = { workspace = true }
async-trait = { workspace = true }
# Webhooks
ulid = { workspace = true }
time = { workspace = true }
# boilerplate
derive_more = { workspace = true }
derive-with = { workspace = true }
thiserror = { workspace = true }
pike = { workspace = true }
# TOML parsing
serde_json = { workspace = true }
mockall = { workspace = true }
#iters
take-until = { workspace = true }
[package.metadata.cargo-machete]
ignored = ["native-tls"]
[dev-dependencies]
# Testing
assert2 = { workspace = true }
rand = { workspace = true }
test-log = { workspace = true }
pretty_assertions = { workspace = true }