From 20e55d6d789eee4b90757f550fd9e11fe940261a Mon Sep 17 00:00:00 2001 From: Lucas Silva Shepard Date: Fri, 28 Jul 2023 15:38:06 -0700 Subject: [PATCH] [fp-rs] Migrating from fastpair/rust to fastpair/rust/bluetooth. --- fastpair/rust/{ => bluetooth}/Cargo.toml | 0 fastpair/rust/{ => bluetooth}/rustfmt.toml | 0 fastpair/rust/{ => bluetooth}/src/bluetooth/api/adapter.rs | 0 fastpair/rust/{ => bluetooth}/src/bluetooth/api/device.rs | 0 fastpair/rust/{ => bluetooth}/src/bluetooth/api/mod.rs | 0 fastpair/rust/{ => bluetooth}/src/bluetooth/common/address.rs | 0 .../rust/{ => bluetooth}/src/bluetooth/common/advertisement.rs | 0 fastpair/rust/{ => bluetooth}/src/bluetooth/common/error.rs | 0 fastpair/rust/{ => bluetooth}/src/bluetooth/common/mod.rs | 0 fastpair/rust/{ => bluetooth}/src/bluetooth/mod.rs | 0 .../rust/{ => bluetooth}/src/bluetooth/unsupported/adapter.rs | 0 fastpair/rust/{ => bluetooth}/src/bluetooth/unsupported/device.rs | 0 fastpair/rust/{ => bluetooth}/src/bluetooth/unsupported/mod.rs | 0 fastpair/rust/{ => bluetooth}/src/bluetooth/windows/adapter.rs | 0 fastpair/rust/{ => bluetooth}/src/bluetooth/windows/address.rs | 0 .../rust/{ => bluetooth}/src/bluetooth/windows/advertisement.rs | 0 fastpair/rust/{ => bluetooth}/src/bluetooth/windows/device.rs | 0 fastpair/rust/{ => bluetooth}/src/bluetooth/windows/error.rs | 0 fastpair/rust/{ => bluetooth}/src/bluetooth/windows/mod.rs | 0 fastpair/rust/{ => bluetooth}/src/lib.rs | 0 fastpair/rust/{ => bluetooth}/src/main.rs | 0 fastpair/rust/{ => bluetooth}/src/message_stream.rs | 0 fastpair/rust/{ => bluetooth}/src/types.rs | 0 fastpair/rust/{ => bluetooth}/src/types/packets.rs | 0 fastpair/rust/{ => bluetooth}/tests/integration_test.rs | 0 25 files changed, 0 insertions(+), 0 deletions(-) rename fastpair/rust/{ => bluetooth}/Cargo.toml (100%) rename fastpair/rust/{ => bluetooth}/rustfmt.toml (100%) rename fastpair/rust/{ => bluetooth}/src/bluetooth/api/adapter.rs (100%) rename fastpair/rust/{ => bluetooth}/src/bluetooth/api/device.rs (100%) rename fastpair/rust/{ => bluetooth}/src/bluetooth/api/mod.rs (100%) rename fastpair/rust/{ => bluetooth}/src/bluetooth/common/address.rs (100%) rename fastpair/rust/{ => bluetooth}/src/bluetooth/common/advertisement.rs (100%) rename fastpair/rust/{ => bluetooth}/src/bluetooth/common/error.rs (100%) rename fastpair/rust/{ => bluetooth}/src/bluetooth/common/mod.rs (100%) rename fastpair/rust/{ => bluetooth}/src/bluetooth/mod.rs (100%) rename fastpair/rust/{ => bluetooth}/src/bluetooth/unsupported/adapter.rs (100%) rename fastpair/rust/{ => bluetooth}/src/bluetooth/unsupported/device.rs (100%) rename fastpair/rust/{ => bluetooth}/src/bluetooth/unsupported/mod.rs (100%) rename fastpair/rust/{ => bluetooth}/src/bluetooth/windows/adapter.rs (100%) rename fastpair/rust/{ => bluetooth}/src/bluetooth/windows/address.rs (100%) rename fastpair/rust/{ => bluetooth}/src/bluetooth/windows/advertisement.rs (100%) rename fastpair/rust/{ => bluetooth}/src/bluetooth/windows/device.rs (100%) rename fastpair/rust/{ => bluetooth}/src/bluetooth/windows/error.rs (100%) rename fastpair/rust/{ => bluetooth}/src/bluetooth/windows/mod.rs (100%) rename fastpair/rust/{ => bluetooth}/src/lib.rs (100%) rename fastpair/rust/{ => bluetooth}/src/main.rs (100%) rename fastpair/rust/{ => bluetooth}/src/message_stream.rs (100%) rename fastpair/rust/{ => bluetooth}/src/types.rs (100%) rename fastpair/rust/{ => bluetooth}/src/types/packets.rs (100%) rename fastpair/rust/{ => bluetooth}/tests/integration_test.rs (100%) diff --git a/fastpair/rust/Cargo.toml b/fastpair/rust/bluetooth/Cargo.toml similarity index 100% rename from fastpair/rust/Cargo.toml rename to fastpair/rust/bluetooth/Cargo.toml diff --git a/fastpair/rust/rustfmt.toml b/fastpair/rust/bluetooth/rustfmt.toml similarity index 100% rename from fastpair/rust/rustfmt.toml rename to fastpair/rust/bluetooth/rustfmt.toml diff --git a/fastpair/rust/src/bluetooth/api/adapter.rs b/fastpair/rust/bluetooth/src/bluetooth/api/adapter.rs similarity index 100% rename from fastpair/rust/src/bluetooth/api/adapter.rs rename to fastpair/rust/bluetooth/src/bluetooth/api/adapter.rs diff --git a/fastpair/rust/src/bluetooth/api/device.rs b/fastpair/rust/bluetooth/src/bluetooth/api/device.rs similarity index 100% rename from fastpair/rust/src/bluetooth/api/device.rs rename to fastpair/rust/bluetooth/src/bluetooth/api/device.rs diff --git a/fastpair/rust/src/bluetooth/api/mod.rs b/fastpair/rust/bluetooth/src/bluetooth/api/mod.rs similarity index 100% rename from fastpair/rust/src/bluetooth/api/mod.rs rename to fastpair/rust/bluetooth/src/bluetooth/api/mod.rs diff --git a/fastpair/rust/src/bluetooth/common/address.rs b/fastpair/rust/bluetooth/src/bluetooth/common/address.rs similarity index 100% rename from fastpair/rust/src/bluetooth/common/address.rs rename to fastpair/rust/bluetooth/src/bluetooth/common/address.rs diff --git a/fastpair/rust/src/bluetooth/common/advertisement.rs b/fastpair/rust/bluetooth/src/bluetooth/common/advertisement.rs similarity index 100% rename from fastpair/rust/src/bluetooth/common/advertisement.rs rename to fastpair/rust/bluetooth/src/bluetooth/common/advertisement.rs diff --git a/fastpair/rust/src/bluetooth/common/error.rs b/fastpair/rust/bluetooth/src/bluetooth/common/error.rs similarity index 100% rename from fastpair/rust/src/bluetooth/common/error.rs rename to fastpair/rust/bluetooth/src/bluetooth/common/error.rs diff --git a/fastpair/rust/src/bluetooth/common/mod.rs b/fastpair/rust/bluetooth/src/bluetooth/common/mod.rs similarity index 100% rename from fastpair/rust/src/bluetooth/common/mod.rs rename to fastpair/rust/bluetooth/src/bluetooth/common/mod.rs diff --git a/fastpair/rust/src/bluetooth/mod.rs b/fastpair/rust/bluetooth/src/bluetooth/mod.rs similarity index 100% rename from fastpair/rust/src/bluetooth/mod.rs rename to fastpair/rust/bluetooth/src/bluetooth/mod.rs diff --git a/fastpair/rust/src/bluetooth/unsupported/adapter.rs b/fastpair/rust/bluetooth/src/bluetooth/unsupported/adapter.rs similarity index 100% rename from fastpair/rust/src/bluetooth/unsupported/adapter.rs rename to fastpair/rust/bluetooth/src/bluetooth/unsupported/adapter.rs diff --git a/fastpair/rust/src/bluetooth/unsupported/device.rs b/fastpair/rust/bluetooth/src/bluetooth/unsupported/device.rs similarity index 100% rename from fastpair/rust/src/bluetooth/unsupported/device.rs rename to fastpair/rust/bluetooth/src/bluetooth/unsupported/device.rs diff --git a/fastpair/rust/src/bluetooth/unsupported/mod.rs b/fastpair/rust/bluetooth/src/bluetooth/unsupported/mod.rs similarity index 100% rename from fastpair/rust/src/bluetooth/unsupported/mod.rs rename to fastpair/rust/bluetooth/src/bluetooth/unsupported/mod.rs diff --git a/fastpair/rust/src/bluetooth/windows/adapter.rs b/fastpair/rust/bluetooth/src/bluetooth/windows/adapter.rs similarity index 100% rename from fastpair/rust/src/bluetooth/windows/adapter.rs rename to fastpair/rust/bluetooth/src/bluetooth/windows/adapter.rs diff --git a/fastpair/rust/src/bluetooth/windows/address.rs b/fastpair/rust/bluetooth/src/bluetooth/windows/address.rs similarity index 100% rename from fastpair/rust/src/bluetooth/windows/address.rs rename to fastpair/rust/bluetooth/src/bluetooth/windows/address.rs diff --git a/fastpair/rust/src/bluetooth/windows/advertisement.rs b/fastpair/rust/bluetooth/src/bluetooth/windows/advertisement.rs similarity index 100% rename from fastpair/rust/src/bluetooth/windows/advertisement.rs rename to fastpair/rust/bluetooth/src/bluetooth/windows/advertisement.rs diff --git a/fastpair/rust/src/bluetooth/windows/device.rs b/fastpair/rust/bluetooth/src/bluetooth/windows/device.rs similarity index 100% rename from fastpair/rust/src/bluetooth/windows/device.rs rename to fastpair/rust/bluetooth/src/bluetooth/windows/device.rs diff --git a/fastpair/rust/src/bluetooth/windows/error.rs b/fastpair/rust/bluetooth/src/bluetooth/windows/error.rs similarity index 100% rename from fastpair/rust/src/bluetooth/windows/error.rs rename to fastpair/rust/bluetooth/src/bluetooth/windows/error.rs diff --git a/fastpair/rust/src/bluetooth/windows/mod.rs b/fastpair/rust/bluetooth/src/bluetooth/windows/mod.rs similarity index 100% rename from fastpair/rust/src/bluetooth/windows/mod.rs rename to fastpair/rust/bluetooth/src/bluetooth/windows/mod.rs diff --git a/fastpair/rust/src/lib.rs b/fastpair/rust/bluetooth/src/lib.rs similarity index 100% rename from fastpair/rust/src/lib.rs rename to fastpair/rust/bluetooth/src/lib.rs diff --git a/fastpair/rust/src/main.rs b/fastpair/rust/bluetooth/src/main.rs similarity index 100% rename from fastpair/rust/src/main.rs rename to fastpair/rust/bluetooth/src/main.rs diff --git a/fastpair/rust/src/message_stream.rs b/fastpair/rust/bluetooth/src/message_stream.rs similarity index 100% rename from fastpair/rust/src/message_stream.rs rename to fastpair/rust/bluetooth/src/message_stream.rs diff --git a/fastpair/rust/src/types.rs b/fastpair/rust/bluetooth/src/types.rs similarity index 100% rename from fastpair/rust/src/types.rs rename to fastpair/rust/bluetooth/src/types.rs diff --git a/fastpair/rust/src/types/packets.rs b/fastpair/rust/bluetooth/src/types/packets.rs similarity index 100% rename from fastpair/rust/src/types/packets.rs rename to fastpair/rust/bluetooth/src/types/packets.rs diff --git a/fastpair/rust/tests/integration_test.rs b/fastpair/rust/bluetooth/tests/integration_test.rs similarity index 100% rename from fastpair/rust/tests/integration_test.rs rename to fastpair/rust/bluetooth/tests/integration_test.rs