-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 985 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (27 loc) · 985 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
[package]
name = "laminarmq-io"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
zerovec = "0.10.4"
zerovec-derive = "0.10.3"
futures = "0.3.30"
num = "0.4.2"
tokio = { version = "1.37", features=["fs", "rt", "rt-multi-thread", "io-util", "sync"], optional = true }
aws-config = { version = "1.1.7", features = ["behavior-version-latest"], optional = true }
aws-sdk-s3 = { version = "1.41.0", optional = true }
bytes = "1.7.1"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
glommio = { version = "0.9.0", optional = true }
tokio-uring = { version = "0.5.0", features = ["bytes"], optional = true }
[features]
default = ["fs", "object_storage"]
fs = ["tokio", "tokio_uring", "glommio"]
object_storage = ["aws_s3"]
tokio = ["dep:tokio"]
tokio_uring = ["dep:tokio-uring"]
glommio = ["dep:glommio"]
aws_s3 = ["dep:aws-config", "dep:aws-sdk-s3"]
legacy = []