forked from feed-rs/feed-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request feed-rs#225 from feed-rs/refactor-tools
Refactor tools
- Loading branch information
Showing
4 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[workspace] | ||
members = [ | ||
"feed-rs", | ||
"testurls" | ||
"tools" | ||
] | ||
resolver = "2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>"] | ||
|
||
[dependencies] | ||
feed-rs = { path = "../feed-rs" } | ||
reqwest = { version = "0.11", features = ["blocking"] } | ||
reqwest = { version = "0.12.4", features = ["blocking"] } |
File renamed without changes.