From cb2f93c4d02146da91710e360ac29ba00ef2fccf Mon Sep 17 00:00:00 2001 From: Gabriel Date: Thu, 10 Jul 2025 20:30:35 -0400 Subject: [PATCH] make public --- readme.md | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 20b372e..6de1eb2 100644 --- a/readme.md +++ b/readme.md @@ -1,6 +1,6 @@ # rss_content -A simple rust crate to serialize `` 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 `` 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) The purpose of this library is to be useful for selecting particular iced widgets. diff --git a/src/lib.rs b/src/lib.rs index c34e47e..d4ca31f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,5 @@ use scraper::{ElementRef, Html, Node}; -mod elements; +pub mod elements; use elements::*; /*