[dependencies.bytemuck]
optional = true
version = "1.15.0"
[dependencies.byteorder]
version = "1.5.0"
[dependencies.integer-encoding]
version = "4.0.0"
[dependencies.jni]
optional = true
version = "0.21.1"
[dependencies.seccompiler]
optional = true
version = "0.5.0"
[dependencies.sufsort]
optional = true
version = "0.1.0"
[dependencies.zstd]
default-features = false
version = "0.13.1"
[dev-dependencies.blake3]
version = "1.5.1"
[features]
default = ["diff", "patch"]
diff = ["sufsort", "zstd/zstdmt"]
java-ffi = ["bytemuck", "jni"]
patch = []
sandbox = ["libc", "seccompiler"]
[lib]
crate-type = ["cdylib", "lib"]
name = "ina"
path = "src/lib.rs"
[lints.clippy]
clone_on_ref_ptr = "warn"
undocumented_unsafe_blocks = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_op_in_unsafe_fn = "warn"
[package]
authors = ["Logan Magee"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Secure, robust, and efficient delta updates for executables"
edition = "2024"
exclude = ["tests/testdata"]
license = "MPL-2.0"
name = "ina"
readme = "README.md"
repository = "https://github.com/accrescent/ina"
version = "0.1.0"
[target.'cfg(all(target_os = "android", target_endian = "little", any(target_arch = "aarch64", target_arch = "x86_64")))'.dependencies.libc]
optional = true
version = "0.2.154"
[[test]]
name = "create_and_apply_patch"
path = "tests/create_and_apply_patch.rs"