- Replace OpenSSL with rustls for better cross-compilation support - Fix tpm_attestation field name typos (was tmp_attestation) - Add missing Debug traits to FramePool structs - Fix borrow checker issue in device registration - Add missing module declarations in main.rs 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
61 lines
1.7 KiB
TOML
61 lines
1.7 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", "rustls-tls"], default-features = false }
|
|
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 = { version = "9.2", default-features = false }
|
|
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"
|