-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (31 loc) · 801 Bytes
/
Copy pathCargo.toml
File metadata and controls
37 lines (31 loc) · 801 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
25
26
27
28
29
30
31
32
33
34
35
36
[workspace]
members = [
'crates/bolt-load',
"crates/bolt-load-core",
'crates/bolt-load-adapter',
'crates/bolt-load-tests',
"crates/bolt-load-utils",
]
resolver = "3"
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "MIT OR Apache-2.0"
repository = "https://github.com/greenhat616/bolt-load"
homepage = "https://github.com/greenhat616/bolt-load"
keywords = ["download", "async", "http", "parallel", "loader"]
categories = ["network-programming", "asynchronous"]
[workspace.dependencies]
futures = "0.3"
bytes = "1"
snafu = "0.9"
async-trait = "0.1"
async-lock = "3"
blocking = "1"
tracing = "0.1"
# Dev Dependencies
anyhow = "1"
tokio = "1"
tokio-util = "0.7"
pretty_assertions = "1"
n0-tracing-test = { version = "0.3.0", features = ["pretty-log-printing"] }