-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 745 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "remote-file"
license = "MIT"
version = "0.2.1"
authors = ["b0lo <b01o@proton.me>"]
repository = "https://github.com/b01o/remote-file"
description = "Access file over http like std::fs::File, asynchronously"
edition = "2024"
keywords = ["file", "http", "remote", "async"]
categories = ["asynchronous", "network-programming"]
[dependencies]
bytes = "1.11"
futures-util = "0.3.31"
log = { version = "0.4.29", features = ["kv"] }
reqwest = { version = "0.13", default-features = false, features = ["stream"] }
tokio = { version = "1.49", default-features = false, features = [] }
[dev-dependencies]
rand = "0.10"
tokio = { version = "1.49", features = ["full"] }
axum = "0.8"
tower-http = { version = "0.6", features = ["fs"] }