Rename live kit bridge to 2 (#3201)

Release Notes:

- N/A
This commit is contained in:
Mikayla Maki 2023-11-01 11:40:40 -07:00 committed by GitHub
commit 78f47f179a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 6 deletions

View file

@ -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")]),
]
)

View file

@ -1,3 +1,3 @@
# LiveKitBridge
# LiveKitBridge2
A description of this package.

View file

@ -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")]