Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 897 Bytes

README.md

File metadata and controls

40 lines (28 loc) · 897 Bytes

RssDecoder

Yet another the minimum swift package for RSS decoder.

Installation

Add a dependencty to your package.swift like below.

// swift-tools-version:5.7

import PackageDescription

let package = Package(
  name: "RssViewer",
  dependencies: [
    .package(url: "https://github.com/mayson-llc/RssDecoder.git", .branch("main")) // NEW!
  ],
  targets: [
    .target(name: "RssViewerTest", dependencies: ["RssDecoder"])
  ]
)

Then

$ swift build

Usage

See also tests

Motivation

We, MAYSON LLC, had been using MWFeedParser for a long time in our projects but wanted to have a new one that has minimal capability for parsing RSS feeds and supports SPM natively.

No matter to say, MWFeedParser was a very nice library and we'd really appreciated 🥰

License

MIT