Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions scraper/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,14 @@ let document = tree.finish();
assert_eq!(document.html(), "<html><head></head><body>hello</body></html>");
```

### Using the library across threads
By default, many types of this library are `!Send` due to some internal data
Comment thread
adamreichold marked this conversation as resolved.
Outdated
structures used. To make them `Send`, enable the `atomic` feature flag.
```toml
[dependencies]
scraper = { version = "0.27.0", features = ["atomic"] }
```

## Contributing

Please feel free to open pull requests. If you're planning on implementing
Expand Down