[package]
edition = "2024"
rust-version = "1.90.0"
name = "monochange_github"
version = "0.1.0"
build = false
include = [
"src/**/*.rs",
"Cargo.toml",
"readme.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GitHub release payload rendering and publishing for monochange"
documentation = "https://docs.rs/monochange_github"
readme = "readme.md"
keywords = [
"github",
"releases",
"versioning",
"monorepo",
]
categories = ["development-tools"]
license = "Unlicense"
repository = "https://github.com/ifiokjr/monochange"
resolver = "2"
[lib]
name = "monochange_github"
path = "src/lib.rs"
[dependencies.monochange_core]
version = "0.1.0"
[dependencies.octocrab]
version = "^0.49"
features = [
"default-client",
"follow-redirect",
"jwt-rust-crypto",
"retry",
"rustls",
"rustls-aws-lc-rs",
"timeout",
"tracing",
]
default-features = false
[dependencies.regex]
version = "^1"
features = [
"std",
"unicode-perl",
]
default-features = true
[dependencies.serde]
version = "1"
features = ["derive"]
default-features = true
[dependencies.serde_json]
version = "^1"
default-features = true
[dependencies.thiserror]
version = "^2.0.18"
default-features = true
[dependencies.tokio]
version = "1"
features = [
"rt",
"rt-multi-thread",
]
default-features = true
[dependencies.tracing]
version = "0.1"
features = ["attributes"]
default-features = true
[dependencies.urlencoding]
version = "^2"
default-features = true
[lints.clippy]
blocks_in_conditions = "allow"
cargo_common_metadata = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
expl_impl_clone_on_copy = "allow"
items_after_statements = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
no_effect_underscore_binding = "allow"
tabs-in-doc-comments = "allow"
too_many_lines = "allow"
wildcard_dependencies = "deny"
wildcard_imports = "allow"
[lints.clippy.complexity]
level = "warn"
priority = -1
[lints.clippy.correctness]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.perf]
level = "warn"
priority = -1
[lints.clippy.style]
level = "warn"
priority = -1
[lints.clippy.suspicious]
level = "warn"
priority = -1
[lints.rust]
edition_2024_expr_fragment_specifier = "allow"
unsafe_code = "deny"
unstable_features = "deny"
unused_extern_crates = "warn"
unused_import_braces = "warn"
unused_lifetimes = "warn"
unused_macro_rules = "warn"
unused_qualifications = "warn"
variant_size_differences = "warn"
[lints.rust.rust_2021_compatibility]
level = "warn"
priority = -1
[lints.rust.rust_2024_compatibility]
level = "warn"
priority = -1