[package]
edition = "2024"
rust-version = "1.94.0"
name = "converge-embassy-github"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GitHub port — organisations, repositories, contributors (REST + GraphQL)."
readme = false
keywords = [
"converge",
"embassy",
"github",
]
categories = ["api-bindings"]
license = "MIT"
repository = "https://github.com/Reflective-Lab/embassy-ports"
resolver = "2"
[lib]
name = "embassy_github"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.converge-pack]
version = "3.9.1"
[dependencies.embassy-pack]
version = "1.1.1"
package = "converge-embassy-pack"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1.48"
features = [
"full",
"macros",
"sync",
]
[lints.clippy]
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
similar_names = "allow"
too_many_lines = "allow"
uninlined_format_args = "allow"
unused_self = "allow"
wildcard_imports = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"