forked from kemitix/git-next
68 lines
1.4 KiB
TOML
68 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]
|
|
# logging
|
|
tracing = { workspace = true }
|
|
|
|
# fs/network
|
|
kxio = { workspace = true }
|
|
|
|
# Actors
|
|
actix = { 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 }
|
|
|
|
[dev-dependencies]
|
|
# Testing
|
|
assert2 = { workspace = true }
|
|
rand = { workspace = true }
|
|
test-log = { workspace = true }
|
|
pretty_assertions = { workspace = true }
|