2024-05-11 19:46:20 +01:00
|
|
|
[package]
|
|
|
|
name = "git-next-config"
|
2024-07-14 16:37:50 +01:00
|
|
|
version = { workspace = true }
|
2024-05-11 19:46:20 +01:00
|
|
|
edition = { workspace = true }
|
2024-07-14 10:40:34 +01:00
|
|
|
license = { workspace = true }
|
2024-07-14 13:32:07 +01:00
|
|
|
repository = { workspace = true }
|
|
|
|
description = "Base types for git-next, the trunk-based development manager"
|
2024-05-11 19:46:20 +01:00
|
|
|
|
|
|
|
[features]
|
2024-05-25 11:25:13 +01:00
|
|
|
default = ["forgejo", "github"]
|
2024-05-11 19:46:20 +01:00
|
|
|
forgejo = []
|
|
|
|
github = []
|
|
|
|
|
|
|
|
[dependencies]
|
2024-07-25 09:02:43 +01:00
|
|
|
# # 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 }
|
|
|
|
#
|
|
|
|
# [dev-dependencies]
|
|
|
|
# # # Testing
|
|
|
|
# assert2 = { workspace = true }
|
|
|
|
# rand = { workspace = true }
|
|
|
|
# pretty_assertions = { workspace = true }
|
|
|
|
# test-log = { workspace = true }
|
2024-05-11 19:46:20 +01:00
|
|
|
|
|
|
|
[lints.clippy]
|
|
|
|
nursery = { level = "warn", priority = -1 }
|
|
|
|
# pedantic = "warn"
|
|
|
|
unwrap_used = "warn"
|
|
|
|
expect_used = "warn"
|