[package]
edition = "2021"
name = "git-remote-htree"
version = "0.2.39"
authors = ["Martti Malmi"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Git remote helper for hashtree - push/pull git repos via nostr and hashtree"
homepage = "https://git.iris.to/#/npub1xdhnr9mrv47kkrn95k6cwecearydeh8e895990n3acntwvmgk2dsdeeycm/hashtree"
readme = "README.md"
license = "MIT"
repository = "https://git.iris.to/#/npub1xdhnr9mrv47kkrn95k6cwecearydeh8e895990n3acntwvmgk2dsdeeycm/hashtree"
[features]
default = ["lmdb"]
lmdb = ["dep:hashtree-lmdb"]
[lib]
name = "git_remote_htree"
path = "src/lib.rs"
[[bin]]
name = "git-remote-htree"
path = "src/main.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "diff_push"
path = "tests/diff_push.rs"
[[test]]
name = "formal_git_props"
path = "tests/formal_git_props.rs"
[[test]]
name = "identity_alias"
path = "tests/identity_alias.rs"
[[test]]
name = "missing_old_chunks"
path = "tests/missing_old_chunks.rs"
[[test]]
name = "nff_push"
path = "tests/nff_push.rs"
[[test]]
name = "p2p_git"
path = "tests/p2p_git.rs"
[[test]]
name = "perf_clone"
path = "tests/perf_clone.rs"
[[test]]
name = "pr_merge"
path = "tests/pr_merge.rs"
[[test]]
name = "production"
path = "tests/production.rs"
[[test]]
name = "relay_publish_guard"
path = "tests/relay_publish_guard.rs"
[[test]]
name = "relay_query_timeout"
path = "tests/relay_query_timeout.rs"
[[test]]
name = "server_coverage"
path = "tests/server_coverage.rs"
[[test]]
name = "shared_lmdb_eviction"
path = "tests/shared_lmdb_eviction.rs"
[[test]]
name = "update_head"
path = "tests/update_head.rs"
[[test]]
name = "visibility"
path = "tests/visibility.rs"
[[bench]]
name = "git_storage"
path = "benches/git_storage.rs"
harness = false
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
]
[dependencies.flate2]
version = "1"
[dependencies.futures]
version = "0.3"
[dependencies.getrandom]
version = "0.3"
[dependencies.hashtree-blossom]
version = "0.2.39"
features = ["store"]
[dependencies.hashtree-config]
version = "0.2.39"
[dependencies.hashtree-core]
version = "0.2.39"
[dependencies.hashtree-fs]
version = "0.2.39"
[dependencies.hashtree-lmdb]
version = "0.2.39"
optional = true
[dependencies.hex]
version = "0.4"
[dependencies.libc]
version = "0.2"
[dependencies.nostr]
version = "0.35"
features = ["nip44"]
[dependencies.nostr-sdk]
version = "0.35"
features = [
"nip44",
"nip59",
]
default-features = false
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
"blocking",
]
default-features = false
[dependencies.rustls]
version = "0.23"
features = ["ring"]
[dependencies.secp256k1]
version = "0.29"
features = ["global-context"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha1]
version = "0.10"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-stream]
version = "0.1"
[dependencies.tokio-tungstenite]
version = "0.24"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.axum]
version = "0.7"
features = [
"ws",
"multipart",
]
[dev-dependencies.hashtree-lmdb]
version = "0.2.39"
[dev-dependencies.tempfile]
version = "3"