Skip to content

Commit

Permalink
Merge pull request #225 from feed-rs/refactor-tools
Browse files Browse the repository at this point in the history
Refactor tools
  • Loading branch information
markpritchard committed May 5, 2024
2 parents 0f4d134 + 4aaa4cd commit bd7bc99
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace]
members = [
"feed-rs",
"testurls"
"tools"
]
resolver = "2"
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# feed-rs
A simple feed parser (RSS, Atom, JSON Feed)

The parser library is in feed-rs, with a simple test tool in testurls
The parser library is in `feed-rs`.
Various tools, such as parsing a URL are in `tools`
4 changes: 2 additions & 2 deletions testurls/Cargo.toml → tools/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "testurls"
name = "tools"
version = "0.1.0"
edition = "2021"
authors = ["Mark Pritchard <mpritcha@gmail.com>"]

[dependencies]
feed-rs = { path = "../feed-rs" }
reqwest = { version = "0.11", features = ["blocking"] }
reqwest = { version = "0.12.4", features = ["blocking"] }
File renamed without changes.

0 comments on commit bd7bc99

Please sign in to comment.