Skip to content

v76.1.1

Compare
Choose a tag to compare
@furby-tm furby-tm released this 05 Nov 02:24
· 4 commits to main since this release
c9dae8d
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"),
    ]
  ),
]