sift-wgpu 0.1.0

High-performance SIFT (Scale-Invariant Feature Transform) implementation in Rust with CPU and WebGPU backends.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "sift-wgpu"
version = "0.1.0"
authors = ["Alexandr Meshkov <stevel705@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance SIFT (Scale-Invariant Feature Transform) implementation in Rust with CPU and WebGPU backends."
homepage = "https://github.com/stevel705/sift-rs"
documentation = "https://docs.rs/sift-rs"
readme = "README.md"
keywords = [
    "sift",
    "feature-detection",
    "image-processing",
    "computer-vision",
    "webgpu",
]
categories = [
    "computer-vision",
    "multimedia::images",
]
license = "MIT"
repository = "https://github.com/stevel705/sift-rs"

[lib]
name = "sift"
crate-type = [
    "cdylib",
    "rlib",
]
path = "src/lib.rs"

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

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

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

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

[dependencies.bytemuck]
version = "1.23.0"
features = ["derive"]

[dependencies.env_logger]
version = "0.11.8"

[dependencies.futures]
version = "0.3"

[dependencies.futures-intrusive]
version = "0.5"

[dependencies.half]
version = "2.4"

[dependencies.image]
version = "0.25.6"
features = [
    "png",
    "jpeg",
    "bmp",
]
default-features = false

[dependencies.imageproc]
version = "0.25.0"
default-features = false

[dependencies.log]
version = "0.4.27"

[dependencies.ndarray]
version = "0.16.1"

[dependencies.pollster]
version = "0.4.0"

[dependencies.web-time]
version = "1.1"

[dependencies.wgpu]
version = "25.0.0"
features = ["webgl"]

[dev-dependencies.tokio]
version = "1"
features = ["macros"]

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.rayon]
version = "1.10.0"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
version = "1"
features = [
    "rt",
    "rt-multi-thread",
]

[target.'cfg(target_arch = "wasm32")'.dependencies.console_error_panic_hook]
version = "0.1"

[target.'cfg(target_arch = "wasm32")'.dependencies.console_log]
version = "1.0"

[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
version = "0.2"
features = ["js"]

[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen]
version = "0.2"

[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen-futures]
version = "0.4"

[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
version = "0.3"
features = [
    "console",
    "Window",
    "Navigator",
    "Performance",
]