[package]
edition = "2024"
rust-version = "1.85"
name = "panproto-git-remote"
version = "0.34.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Git remote helper for panproto:// URLs (enables git push/pull/clone via panproto)"
readme = "README.md"
license = "MIT"
repository = "https://github.com/panproto/panproto"
[package.metadata.dist]
dist = true
[[bin]]
name = "git-remote-panproto"
path = "src/main.rs"
[dependencies.git2]
version = "0.20"
features = [
"vendored-libgit2",
"vendored-openssl",
]
[dependencies.miette]
version = "7.6.0"
features = ["fancy"]
[dependencies.panproto-git]
version = "0.34.1"
[dependencies.panproto-vcs]
version = "0.34.1"
[dependencies.panproto-xrpc]
version = "0.34.1"
[dependencies.rustc-hash]
version = "2.1.2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]
[dev-dependencies.panproto-protocols]
version = "0.34.1"
[dev-dependencies.panproto-schema]
version = "0.34.1"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
expect_used = "warn"
unwrap_used = "deny"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"