├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── LICENSE.dependencies ├── README.md ├── images └── device-mgr-screenshot.PNG ├── install.bat ├── install.sh ├── src ├── devices │ └── mod.rs └── main.rs ├── uni-sync.json ├── uni-sync.service ├── uni-sync.spec ├── uninstall.bat └── uninstall.sh /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | uni-sync-backup.json 3 | /.idea 4 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EightB1ts/uni-sync/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EightB1ts/uni-sync/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EightB1ts/uni-sync/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EightB1ts/uni-sync/HEAD/LICENSE.dependencies -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EightB1ts/uni-sync/HEAD/README.md -------------------------------------------------------------------------------- /images/device-mgr-screenshot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EightB1ts/uni-sync/HEAD/images/device-mgr-screenshot.PNG -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EightB1ts/uni-sync/HEAD/install.bat -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EightB1ts/uni-sync/HEAD/install.sh -------------------------------------------------------------------------------- /src/devices/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EightB1ts/uni-sync/HEAD/src/devices/mod.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EightB1ts/uni-sync/HEAD/src/main.rs -------------------------------------------------------------------------------- /uni-sync.json: -------------------------------------------------------------------------------- 1 | { 2 | "configs": [] 3 | } 4 | -------------------------------------------------------------------------------- /uni-sync.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EightB1ts/uni-sync/HEAD/uni-sync.service -------------------------------------------------------------------------------- /uni-sync.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EightB1ts/uni-sync/HEAD/uni-sync.spec -------------------------------------------------------------------------------- /uninstall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EightB1ts/uni-sync/HEAD/uninstall.bat -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EightB1ts/uni-sync/HEAD/uninstall.sh --------------------------------------------------------------------------------