1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// https://stackoverflow.com/a/61417700
/*!
Go beyond `http://` with this streamlined URL library for Rust.
read-url gets you an [io::Read](std::io::Read) or a [tokio::io::AsyncRead] from a wide variety of URL types,
including entries in archives and code repositories using a URL notation inspired by Java's
[JarURLConnection](https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/JarURLConnection.html).
For more information and usage examples see the
[home page](https://github.com/tliron/rust-read-url).
*/
/// `file:`
/// `git:`
/// `http:` and `https:`
/// `internal:`
/// Mock URLs.
/// `tar:`
/// `zip:`
pub use ;