v76.1.1
To use this release of icu in your own swift project, add icu as a package dependency in your project's Package.swift
file.
// swift-tools-version: 5.10
dependencies: [
.package(url: "https://github.com/wabiverse/icu.git", from: "76.1.1"),
]
Then, for any target you'd like, add the icu product as a target dependency.
targets: [
.target(
name: "MyLibrary",
dependencies: [
/* add the icu product as a library dependency. */
.product(name: "icuin", package: "icu"),
]
),
]