mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-16 23:34:11 +00:00
commit
78f47f179a
5 changed files with 6 additions and 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")]
|
||||
|
|
Loading…
Reference in a new issue