ngit 2.6.2

nostr plugin for git
Documentation
[package]
name = "ngit"
version = "2.6.2"
edition = "2021"
description = "nostr plugin for git"
authors = ["DanConwayDev <DanConwayDev@protonmail.com>"]
readme = "README.md"
homepage = "https://ngit.dev"
repository = "https://relay.ngit.dev/npub15qydau2hjma6ngxkl2cyar74wzyjshvl65za5k5rl69264ar2exs5cyejr/ngit.git"
license = "MIT"
keywords = ["nostr", "git"]
categories = ["command-line-utilities","development-tools"]

[dependencies]
anyhow = "1.0.98"
async-trait = "0.1.88"
auth-git2 = "0.6.0"
chacha20poly1305 = "0.10.1"
chrono = "0.4"
clap = { version = "4.6.1", features = ["derive"] }
console = "0.16.3"
crossterm = "0.29.0"
dialoguer = "0.12.0"
directories = "6.0.0"
futures = "0.3.31"
git2 = { version = "0.21.0", features = ["ssh", "https"] }
indicatif = "0.18.0"
mailparse = "0.16.1"
nostr = { version = "0.45.0-alpha.2", features = ["nip49"] }
nostr-connect = "0.45.0-alpha.2"
nostr-database = "0.45.0-alpha.2"
nostr-lmdb = "0.45.0-alpha.2"
nostr-sdk = "0.45.0-alpha.2"
passwords = "3.1.16"
qrcode = { version = "0.14.1", default-features = false }
reqwest = { version = "0.12.28", features = ["json"] }
scrypt = "0.12.0"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
serde_yaml = "0.9.34"
tokio = { version = "1.52.3", features = ["full"] }
urlencoding = "2.1.3"
zeroize = "1.8.1"

[dev-dependencies]
assert_cmd = "2.0.17"
mockall = "0.14.0"
once_cell = "1.21.3"
rstest = "0.26"
serial_test = "3.4.0"
test_harness = { path = "test_harness" }

[workspace]
members = [
    "test_harness",
]

[lib]
name = "ngit"
path = "src/lib/mod.rs"

[features]
default = []
vendored-openssl = ["git2/vendored-openssl"]

[[bin]]
name = "ngit"
path = "src/bin/ngit/main.rs"

[[bin]]
name = "git-remote-nostr"
path = "src/bin/git_remote_nostr/main.rs"

# `git push` against a nostr:// remote — one submodule per scenario under
# `tests/git_push_state/`. The directory layout means Cargo doesn't
# auto-discover this test, so it needs an explicit entry.
[[test]]
name = "git_push_state"
path = "tests/git_push_state/main.rs"

# `git push pr/<branch>` producing PR events — one submodule per scenario under
# `tests/git_push_pr/`. The directory layout means Cargo doesn't auto-discover
# this test, so it needs an explicit entry.
[[test]]
name = "git_push_pr"
path = "tests/git_push_pr/main.rs"

[profile.release]
lto = true
strip = "symbols"