grabbit 13ce6ae442 feat: implement complete edge device registration system
- Add hardware fingerprinting with cross-platform support
- Implement secure device registration flow with X.509 certificates
- Add WebSocket real-time communication for device status
- Create comprehensive device management dashboard
- Establish zero-trust security architecture with multi-layer protection
- Add database migrations for device registration entities
- Implement Rust edge client with hardware identification
- Add certificate management and automated provisioning system

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-13 08:46:25 +08:00

61 lines
1.6 KiB
TOML

[package]
name = "meteor-edge-client"
version = "0.1.0"
edition = "2021"
[dependencies]
clap = { version = "4.0", features = ["derive"] }
reqwest = { version = "0.11", features = ["json", "multipart"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
tokio = { version = "1.0", features = ["full"] }
anyhow = "1.0"
thiserror = "1.0"
dirs = "5.0"
chrono = { version = "0.4", features = ["serde"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["json", "chrono", "env-filter"] }
tracing-appender = "0.2"
uuid = { version = "1.0", features = ["v4"] }
flate2 = "1.0"
bytes = "1.5"
lazy_static = "1.4"
sys-info = "0.9"
libc = "0.2"
hostname = "0.3"
num_cpus = "1.16"
# Device registration and security dependencies
sha2 = "0.10"
base64 = "0.22"
rand = "0.8"
hmac = "0.12"
jsonwebtoken = "9.2"
hex = "0.4"
ring = "0.17"
rustls = { version = "0.23", features = ["ring"] }
rustls-pemfile = "2.0"
x509-parser = "0.16"
qrcode = "0.14"
image = "0.24"
# Network and WebSocket
tungstenite = { version = "0.21", features = ["rustls-tls-native-roots"] }
tokio-tungstenite = { version = "0.21", features = ["rustls-tls-native-roots"] }
futures-util = "0.3"
http = "1.0"
# Hardware fingerprinting
sysinfo = "0.30"
mac_address = "1.1"
# opencv = { version = "0.88", default-features = false } # Commented out for demo - requires system OpenCV installation
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["memoryapi", "winnt", "handleapi"] }
[dev-dependencies]
tempfile = "3.0"
futures = "0.3"
[[bin]]
name = "test-fingerprint"
path = "src/test_fingerprint.rs"