Created by Wiktor/overspend1 - Revolutionary enterprise backup solution: ✨ Features: - Complete Android-only management (no web dashboards) - AI-powered backup optimization and anomaly detection - Real-time WebSocket communication and CRDT sync - Hardware-accelerated encryption with KernelSU integration - Comprehensive microservices architecture - System-level file monitoring and COW snapshots 🏗️ Implementation: - Android app with complete system administration - Rust daemon with Android bridge and gRPC services - ML-powered backup prediction and scheduling optimization - KernelSU module with native kernel integration - Enterprise microservices (Kotlin, Python, Node.js, Rust) - Production-ready CI/CD with proper release packaging 📱 Management via Android: - Real-time backup monitoring and control - Service management and configuration - Device registration and security management - Performance monitoring and troubleshooting - ML analytics dashboard and insights 🔒 Enterprise Security: - End-to-end encryption with hardware acceleration - Multi-device key management and rotation - Zero-trust architecture with device authentication - Audit logging and security event monitoring Author: Wiktor (overspend1) Version: 2.0.0 License: MIT
48 lines
1015 B
TOML
48 lines
1015 B
TOML
[package]
|
|
name = "corestate-daemon"
|
|
version = "2.0.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# Core async runtime
|
|
tokio = { version = "1.34", features = ["full"] }
|
|
tokio-util = { version = "0.7", features = ["codec"] }
|
|
futures = "0.3"
|
|
|
|
# Networking and gRPC
|
|
tonic = "0.10"
|
|
prost = "0.12"
|
|
tokio-tungstenite = "0.20"
|
|
hyper = "0.14"
|
|
|
|
# Serialization
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
toml = "0.8"
|
|
|
|
# Logging
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
# File system monitoring
|
|
notify = "6.1"
|
|
walkdir = "2.4"
|
|
|
|
# Utilities
|
|
uuid = { version = "1.6", features = ["v4", "serde"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
thiserror = "1.0"
|
|
anyhow = "1.0"
|
|
|
|
# System interfaces
|
|
nix = "0.27"
|
|
libc = "0.2"
|
|
|
|
# Crypto
|
|
ring = "0.17"
|
|
aes-gcm = "0.10"
|
|
[[bin]]
|
|
name = "corestate-daemon"
|
|
path = "src/main.rs" |