[package]
edition = "2024"
rust-version = "1.95"
name = "mkit-git-bridge"
version = "0.3.0"
authors = ["Official Unofficial, Inc."]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic mkit↔git bridge: export translation (SPEC-GIT-BRIDGE) and importer-signed import (SPEC-GIT-IMPORT)"
readme = "README.md"
keywords = [
"mkit",
"git",
"bridge",
"export",
"import",
]
categories = ["development-tools"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/officialunofficial/mkit"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "mkit_git_bridge"
path = "src/lib.rs"
[[test]]
name = "golden"
path = "tests/golden.rs"
[[test]]
name = "golden_import"
path = "tests/golden_import.rs"
[[test]]
name = "import_round_trip"
path = "tests/import_round_trip.rs"
[[test]]
name = "round_trip"
path = "tests/round_trip.rs"
[dependencies.flate2]
version = "1"
[dependencies.mkit-core]
version = "0.3"
[dependencies.sha1]
version = "0.11"
default-features = false
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
doc_lazy_continuation = "allow"
missing_errors_doc = "allow"
module_inception = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unsafe_op_in_unsafe_fn = "deny"