git-next/crates/config/Cargo.toml

51 lines
972 B
TOML
Raw Normal View History

[package]
name = "git-next-config"
version = { workspace = true }
edition = { workspace = true }
[features]
default = ["forgejo", "github"]
forgejo = []
github = []
[dependencies]
# logging
tracing = { workspace = true }
# fs/network
kxio = { workspace = true }
# TOML parsing
serde = { workspace = true }
# serde_json = { workspace = true }
toml = { workspace = true }
# Secrets and Password
secrecy = { workspace = true }
# Git
gix = { workspace = true }
git-url-parse = { workspace = true }
# Webhooks
ulid = { workspace = true }
# boilerplate
derive_more = { workspace = true }
derive-with = { workspace = true }
thiserror = { workspace = true }
pike = { workspace = true }
2024-05-14 07:59:31 +01:00
[dev-dependencies]
# # Testing
2024-05-14 07:59:31 +01:00
assert2 = { workspace = true }
rand = { workspace = true }
2024-06-01 11:15:04 +01:00
pretty_assertions = { workspace = true }
test-log = { workspace = true }
[lints.clippy]
nursery = { level = "warn", priority = -1 }
# pedantic = "warn"
unwrap_used = "warn"
expect_used = "warn"