Skip to content
Draft
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ var package = Package(
.default(enabledTraits: ["ServiceLifecycleSupport", "DistributedTracingSupport"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-algorithms.git", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-atomics.git", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-collections.git", from: "1.1.4"),
.package(url: "https://github.com/apple/swift-log.git", from: "1.6.3"),
Expand Down Expand Up @@ -76,7 +77,10 @@ var package = Package(
),
.target(
name: "ValkeySearch",
dependencies: ["Valkey"],
dependencies: [
"Valkey",
.product(name: "Algorithms", package: "swift-algorithms"),
],
swiftSettings: defaultSwiftSettings
),
.target(
Expand Down
2 changes: 1 addition & 1 deletion Sources/Valkey/ValkeyCommandEncoder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import NIOCore
/// A type that encodes Valkey commands into a buffer.
public struct ValkeyCommandEncoder {
@usableFromInline
var buffer: ByteBuffer
package var buffer: ByteBuffer

@inlinable
package init() {
Expand Down
Loading
Loading