File: Cargo.toml

package info (click to toggle)
rust-async-http-range-reader 0.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 212 kB
  • sloc: makefile: 2
file content (105 lines) | stat: -rw-r--r-- 2,110 bytes parent folder | download
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "async_http_range_reader"
version = "0.9.1"
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
build = false
exclude = ["test-data/*"]
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A library for streaming reading of files over HTTP using range requests"
readme = "README.md"
license = "MIT"
repository = "https://github.com/prefix-dev/async_http_range_reader"

[lib]
name = "async_http_range_reader"
path = "src/lib.rs"

[dependencies.bisection]
version = "0.1"

[dependencies.futures]
version = "0.3"

[dependencies.http-content-range]
version = "0.2"

[dependencies.itertools]
version = "0.13"

[dependencies.memmap2]
version = "0.9"

[dependencies.reqwest]
version = "0.12"
features = ["stream"]
default-features = false

[dependencies.reqwest-middleware]
version = "0.4"

[dependencies.thiserror]
version = "1"

[dependencies.tokio]
version = "1.33"
default-features = false

[dependencies.tokio-stream]
version = "0.1"
features = ["sync"]

[dependencies.tokio-util]
version = "0.7"

[dependencies.tracing]
version = "0.1"

[dev-dependencies.assert_matches]
version = "1"

[dev-dependencies.async_zip]
version = "0.0.17"
features = ["tokio"]
default-features = false

[dev-dependencies.axum]
version = "0.7"
features = [
    "tokio",
    "http1",
]
default-features = false

[dev-dependencies.rstest]
version = ">=0.17"

[dev-dependencies.tokio]
version = "1"
features = [
    "macros",
    "test-util",
]
default-features = false

[dev-dependencies.tower-http]
version = "0.6"
features = ["fs"]
default-features = false

[dev-dependencies.url]
version = "2"