A fast, safe, and efficient CBOR serialization library for Swift on any platform.
swiftpackageindex.com/thecoolwinter/CBOR/1.1.1/documentation/cbor
atproto
swift
cbor
1// swift-tools-version:6.0
2
3import PackageDescription
4
5let package = Package(
6 name: "CBOR",
7 products: [
8 .library(name: "CBOR", targets: ["CBOR"])
9 ],
10 dependencies: [
11 // Heap
12 .package(url: "https://github.com/apple/swift-collections.git", from: "1.2.0"),
13 ],
14 targets: [
15 .target(
16 name: "CBOR",
17 dependencies: [
18 .product(name: "Collections", package: "swift-collections")
19 ]
20 ),
21 .executableTarget(
22 name: "Fuzzing",
23 dependencies: ["CBOR"]
24 ),
25 .testTarget(
26 name: "CBORTests",
27 dependencies: ["CBOR"]
28 )
29 ]
30)