inspire 0.1.2

InsPIRe: Communication-Efficient PIR with Server-side Preprocessing
Documentation
[[bench]]
harness = false
name = "ntt"
path = "benches/ntt.rs"

[[bench]]
harness = false
name = "packing"
path = "benches/packing.rs"

[[bench]]
harness = false
name = "query_size_latency"
path = "benches/query_size_latency.rs"

[[bench]]
harness = false
name = "respond"
path = "benches/respond.rs"

[[bin]]
name = "inspire-client"
path = "src/bin/client.rs"
required-features = ["cli"]

[[bin]]
name = "inspire-server"
path = "src/bin/server.rs"
required-features = ["server", "cli"]

[[bin]]
name = "inspire-setup"
path = "src/bin/setup.rs"
required-features = ["server", "cli"]

[dependencies.axum]
optional = true
version = "0.7"

[dependencies.bincode]
version = "1.3"

[dependencies.byteorder]
version = "1.5"

[dependencies.clap]
features = ["derive"]
optional = true
version = "4.4"

[dependencies.eyre]
optional = true
version = "0.6"

[dependencies.hex]
version = "0.4"

[dependencies.indicatif]
optional = true
version = "0.17"

[dependencies.memmap2]
optional = true
version = "0.9"

[dependencies.rand]
version = "0.8"

[dependencies.rand_chacha]
version = "0.3"

[dependencies.rayon]
version = "1.10"

[dependencies.reqwest]
features = ["json"]
optional = true
version = "0.12"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.tiny-keccak]
features = ["keccak"]
version = "2.0"

[dependencies.tokio]
features = ["full"]
optional = true
version = "1.36"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
features = ["env-filter"]
optional = true
version = "0.3"

[dependencies.zstd]
optional = true
version = "0.13"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"

[dev-dependencies.proptest]
version = "1.4"

[dev-dependencies.tempfile]
version = "3.10"

[[example]]
name = "benchmark_seed_expansion"
path = "examples/benchmark_seed_expansion.rs"

[[example]]
name = "benchmark_variants"
path = "examples/benchmark_variants.rs"

[[example]]
name = "generate_test_data"
path = "examples/generate_test_data.rs"

[[example]]
name = "query_sepolia"
path = "examples/query_sepolia.rs"

[[example]]
name = "query_size_comparison"
path = "examples/query_size_comparison.rs"

[features]
cli = ["clap", "eyre", "tracing-subscriber", "indicatif"]
default = ["server", "cli", "zstd"]
server = ["axum", "tokio", "memmap2", "reqwest"]

[lib]
name = "inspire"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["cryptography", "network-programming"]
description = "InsPIRe: Communication-Efficient PIR with Server-side Preprocessing"
documentation = "https://docs.rs/inspire"
edition = "2021"
homepage = "https://github.com/igor53627/inspire-rs"
keywords = ["pir", "homomorphic", "cryptography", "inspire"]
license = "MIT OR Apache-2.0"
name = "inspire"
readme = "README.md"
repository = "https://github.com/igor53627/inspire-rs"
version = "0.1.2"

[[test]]
name = "e2e_pir"
path = "tests/e2e_pir.rs"

[[test]]
name = "ethereum_format"
path = "tests/ethereum_format.rs"

[[test]]
name = "http_inspiring"
path = "tests/http_inspiring.rs"