make public
This commit is contained in:
parent
099d891c80
commit
cb2f93c4d0
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
# rss_content
|
# rss_content
|
||||||
|
|
||||||
A simple rust crate to serialize `<content:encoded>` into useful objects using the `scraper` crate. If you need to parse general rss, you probably just want the [rss crate](https://crates.io/crates/rss)
|
A simple rust crate to serialize `<content:encoded>` into useful objects using the `scraper` crate. If you need to parse general rss, you probably just want the [RSS crate](https://crates.io/crates/rss)
|
||||||
|
|
||||||
This is part of my personal learning of Rust & [iced.](iced.rs)
|
This is part of my personal learning of Rust & [iced.](iced.rs)
|
||||||
The purpose of this library is to be useful for selecting particular iced widgets.
|
The purpose of this library is to be useful for selecting particular iced widgets.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
use scraper::{ElementRef, Html, Node};
|
use scraper::{ElementRef, Html, Node};
|
||||||
mod elements;
|
pub mod elements;
|
||||||
use elements::*;
|
use elements::*;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue