scanlink 0.1.1

Scan QR payloads and use parsed connection data with pluggable network 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 = "2024"
name = "scanlink"
version = "0.1.1"
build = false
exclude = [
    ".vscode/",
    "Cargo.toml.orig",
    "camera_preview.png",
    "rust-qr-venv/",
    "target/",
    "Cargo.lock",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Scan QR payloads and use parsed connection data with pluggable network backends."
homepage = "https://github.com/randomSmarts/Scanlink"
documentation = "https://docs.rs/scanlink"
readme = "README.md"
keywords = [
    "qr",
    "wifi",
    "networkmanager",
    "onboarding",
    "connectivity",
]
categories = [
    "network-programming",
    "command-line-utilities",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/randomSmarts/Scanlink"

[features]
default = []
linux-network-manager = ["wifi"]
qr = [
    "dep:image",
    "dep:nokhwa",
    "dep:zedbar",
]
wifi = ["dep:regex"]

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

[[example]]
name = "scan_and_connect"
path = "examples/scan_and_connect.rs"
required-features = [
    "qr",
    "linux-network-manager",
]

[dependencies.image]
version = "0.25"
optional = true

[dependencies.nokhwa]
version = "0.10"
features = ["input-native"]
optional = true

[dependencies.regex]
version = "1"
optional = true

[dependencies.zedbar]
version = "0.4.1"
optional = true