[package]
edition = "2024"
name = "sparslog"
version = "0.1.5"
authors = ["Thomas Habets <thomas@habets.se>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SDR receiver for IKEA sparsnäs"
readme = "README.md"
keywords = [
"SDR",
"ikea",
]
license = "MIT"
repository = "https://github.com/ThomasHabets/sparslog"
[features]
default = []
tokio-unstable = [
"tokio/tracing",
"rustradio/tokio-unstable",
]
volk = ["rustradio/volk"]
[lib]
name = "sparslog"
path = "src/sparslog.rs"
[[bin]]
name = "sparslog"
path = "src/main.rs"
[[bin]]
name = "sparslog-async"
path = "src/main_async.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.console-subscriber]
version = "0.4.1"
[dependencies.ctrlc]
version = "3"
[dependencies.log]
version = "0.4"
[dependencies.num]
version = "0.4"
[dependencies.prometheus]
version = "0.14.0"
features = [
"process",
"push",
]
[dependencies.rustradio]
version = "0.16"
features = [
"rtlsdr",
"fast-math",
"async",
]
[dependencies.stderrlog]
version = "0.6"
[dependencies.tokio]
version = "1.45.0"