You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-17Lines changed: 3 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,15 +67,7 @@ If you need something else, the `Page::execute` function allows for writing your
67
67
68
68
### Add chromiumoxide to your project
69
69
70
-
`chromiumoxide` comes with support for the [`tokio`](https://github.com/tokio-rs/tokio) and [`async-std`](https://github.com/async-rs/async-std) runtimes.
71
-
72
-
By default `chromiumoxide` is configured with `tokio`.
73
-
74
-
To use `chromiumoxide` with the `async-std` runtime:
75
-
76
-
```toml
77
-
chromiumoxide = { version = "0.8.0", default-features = false, features = ["async-std-runtime"] }
78
-
```
70
+
`chromiumoxide` only supports the [`tokio`](https://github.com/tokio-rs/tokio) runtime.
79
71
80
72
## Generated Code
81
73
@@ -90,15 +82,9 @@ All Events are bundled in single enum (`CdpEvent`)
90
82
## Fetcher
91
83
92
84
By default `chromiumoxide` will try to find an installed version of chromium on the computer it runs on.
93
-
It is possible to download and install one automatically for some platforms using the `fetcher`.
94
-
95
-
Ther features are currently a bit messy due to a Cargo bug and will be changed once it is resolved.
96
-
Based on your runtime and TLS configuration you should enable one of the following:
85
+
It is possible to download and install one automatically for some platforms using the `fetcher` feature.
97
86
98
-
-`_fetcher-rustls-async-std`
99
-
-`_fetcher-rustls-tokio`
100
-
-`_fetcher-native-async-std`
101
-
-`_fetcher-native-tokio`
87
+
You need to enable either the `rustls` or the `native-tls` feature to allow the fetcher to download binaries.
0 commit comments