crates/live_kit_client2/LiveKitBridge/Package.resolved → crates/live_kit_client2/LiveKitBridge2/Package.resolved 🔗
Mikayla created
crates/live_kit_client2/LiveKitBridge2/Package.resolved | 0
crates/live_kit_client2/LiveKitBridge2/Package.swift | 8
crates/live_kit_client2/LiveKitBridge2/README.md | 2
crates/live_kit_client2/LiveKitBridge2/Sources/LiveKitBridge2/LiveKitBridge2.swift | 0
crates/live_kit_client2/build.rs | 2
5 files changed, 6 insertions(+), 6 deletions(-)
@@ -3,16 +3,16 @@
import PackageDescription
let package = Package(
- name: "LiveKitBridge",
+ name: "LiveKitBridge2",
platforms: [
.macOS(.v10_15)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
- name: "LiveKitBridge",
+ name: "LiveKitBridge2",
type: .static,
- targets: ["LiveKitBridge"]),
+ targets: ["LiveKitBridge2"]),
],
dependencies: [
.package(url: "https://github.com/livekit/client-sdk-swift.git", .exact("1.0.12")),
@@ -21,7 +21,7 @@ let package = Package(
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
- name: "LiveKitBridge",
+ name: "LiveKitBridge2",
dependencies: [.product(name: "LiveKit", package: "client-sdk-swift")]),
]
)
@@ -1,3 +1,3 @@
-# LiveKitBridge
+# LiveKitBridge2
A description of this package.
@@ -5,7 +5,7 @@ use std::{
process::Command,
};
-const SWIFT_PACKAGE_NAME: &str = "LiveKitBridge";
+const SWIFT_PACKAGE_NAME: &str = "LiveKitBridge2";
#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")]