Skip to content

Commit

Permalink
Update manifest and get ready for cargo publish
Browse files Browse the repository at this point in the history
  • Loading branch information
suaviloquence committed Aug 4, 2024
1 parent 0af8d07 commit f71627d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 11 deletions.
19 changes: 10 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,18 @@
name = "scrapelect"
version = "0.2.0"
edition = "2021"
authors = ["Max Carr <[email protected]>"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/suaviloquence/scrapelect"
description = "Interpreter for scrapelect, a CSS-inspired web scraping DSL"

[dependencies]
anyhow = "1.0"
regex = "1.10"
reqwest = "0.12.5"
scraper = "0.19"
tokio = { version = "1.38.0", features = ["full"] }
filter-proc-macro = { path = "./filter-proc-macro", version = "0.2.0" }
scrapelect-filter-proc-macro = { path = "./filter-proc-macro", version = "0.2.0" }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive", "rc"] }
futures = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion src/interpreter/filter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use super::{
ElementContext, Value,
};

pub use filter_proc_macro::{filter_fn, Args};
pub use scrapelect_filter_proc_macro::{filter_fn, Args};

type Structure<'doc> = BTreeMap<Arc<str>, PValue<'doc>>;

Expand Down

0 comments on commit f71627d

Please sign in to comment.