| Crates.io | glowbarn |
| lib.rs | glowbarn |
| version | 2.0.0 |
| created_at | 2026-01-25 17:31:06.450193+00 |
| updated_at | 2026-01-25 17:31:06.450193+00 |
| description | Multi-Sensor Anomaly Detection System - High Performance Native Application |
| homepage | |
| repository | https://github.com/bad-antics/glowbarn |
| max_upload_size | |
| id | 2069141 |
| size | 609,275 |
High-Performance Paranormal Detection Suite
A cross-platform native application for paranormal investigation, environmental monitoring, and multi-modal anomaly detection. Built in Rust for maximum performance and safety.
Download from Releases.
# Install Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# Clone and build
git clone https://github.com/bad-antics/glowbarn-rs.git
cd glowbarn-rs
cargo build --release --features gui
# Run
./target/release/glowbarn --demo
sudo apt install libasound2-dev libudev-dev pkg-config libssl-dev \
libxkbcommon-dev libwayland-dev
# GUI mode with demo sensors
glowbarn --demo
# Headless server mode
glowbarn --headless --ws-port 8765
# With debug logging
glowbarn --demo --debug
# Custom config file
glowbarn -c /path/to/config.toml
glowbarn-rs/
├── src/
│ ├── core/ # Engine, event bus, scheduler
│ ├── sensors/ # 50+ sensor implementations
│ ├── analysis/ # Entropy, anomaly, signal processing
│ ├── detection/ # Fusion, classification, correlation
│ ├── security/ # Encryption, auth, secure memory
│ ├── streaming/ # MQTT, WebSocket, export
│ ├── gpu/ # wgpu compute shaders
│ ├── ui/ # egui visual console
│ ├── config/ # Configuration management
│ └── db/ # SQLite persistence
Default config location: ~/.config/glowbarn/config.toml
[sensors]
sample_rate = 1000.0
buffer_size = 4096
[analysis]
entropy_window = 256
anomaly_threshold = 3.0
[detection]
fusion_method = "bayesian"
min_confidence = 0.7
[gui]
theme = "dark"
refresh_rate = 60
Connect to ws://localhost:8765 for real-time data:
{
"type": "reading",
"sensor_id": "emf-probe-1",
"timestamp": "2026-01-24T12:00:00Z",
"values": [0.5, 0.7, 0.3],
"quality": 0.95
}
Publish to topics:
glowbarn/readings/{sensor_id}glowbarn/detectionsglowbarn/alertsContributions welcome! Please read our Contributing Guide.
MIT License - see LICENSE for details.
Made with 🔮 by bad-antics