mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-05-06 06:13:22 -04:00
- Added QR code generation for remote pairing, allowing users to scan codes for easier device connection. - Updated CLI to include QR code display and manual entry options for pairing. - Enhanced PairingCoordinator to handle QR code JSON, including NodeId and relay URL for improved connectivity. - Implemented camera permission handling in iOS for QR code scanning functionality. - Refactored networking service to support relay-based pairing, ensuring reliable connections across different networks. - Added tests for relay-only pairing scenarios to validate functionality and reliability.
21 lines
619 B
TOML
21 lines
619 B
TOML
[package]
|
|
edition = "2021"
|
|
name = "sd-cli"
|
|
version = "0.1.0"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
bincode = { version = "2.0.0-rc.3", features = ["serde"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
clap = { version = "4", features = ["derive"] }
|
|
comfy-table = "7.1"
|
|
crossterm = "0.27"
|
|
indicatif = "0.17"
|
|
qr2term = "0.3"
|
|
ratatui = "0.26"
|
|
sd-core = { path = "../../core", features = ["cli"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["full"] }
|
|
uuid = { version = "1", features = ["serde", "v4"] }
|