-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
104 lines (95 loc) · 2.71 KB
/
Cargo.toml
File metadata and controls
104 lines (95 loc) · 2.71 KB
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
[package]
name = "reductionist"
version = "0.13.1"
edition = "2024"
rust-version = "1.93.0"
license = "Apache-2.0"
description = "S3 Active Storage server"
homepage = "https://crates.io/crates/reductionist"
documentation = "https://docs.rs/reductionist"
repository = "https://github.com/stackhpc/reductionist-rs"
readme = "README.md"
authors = ["Mark Goddard <mark@stackhpc.com>", "Scott Davidson <scott@stackhpc.com>"]
keywords = ["s3", "ndarray"]
# https://crates.io/category_slugs
categories = ["mathematics", "science", "simulation"]
[badges]
maintenance = { status = "actively-developed" }
# Uncomment this to improve flamegraphs.
# debug = true
[dependencies]
async-trait = "0.1"
aws-credential-types = { version = "1.2", features = ["hardcoded-credentials"] }
aws-sdk-s3 = "1.127"
aws-smithy-http = "0.60"
aws-smithy-runtime-api = "1.11"
aws-smithy-types = "1.4"
aws-types = "1.3"
axum = { version = "0.6", features = ["headers"] }
axum-server = { version = "0.4.7", features = ["tls-rustls"] }
blusc = "0.0.2"
byte-unit = "5.2.0"
bytes = { version = "1.11.1", features = ["serde"] }
byteshuffle = "0.1.2"
clap = { version = "~4.5", features = ["derive", "env"] }
expanduser = "1.2.2"
flate2 = "1.1"
hashbrown = "0.14"
http = "1.4"
hyper = { version = "0.14", features = ["full"] }
lazy_static = "1.5"
log = "0.4.29"
maligned = "0.2.1"
md5 = "0.7.0"
mime = "0.3"
ndarray = "0.15"
ndarray-stats = "0.5"
num_cpus = "1"
num-traits = "0.2.19"
opentelemetry = "0.20"
opentelemetry-jaeger = { version = "0.19", features = ["rt-tokio"] }
prometheus = { version = "0.13", features = ["process"] }
rayon = "1.11"
reqwest = "0.13.2"
serde = { version = "1.0", features = ["derive"] }
serde_cbor = "0.11.2"
serde_json = "1.0"
strum_macros = "0.24"
tempfile = "3.27.0"
thiserror = "1.0"
time = "0.3.47"
tokio = { version = "1.50", features = ["full"] }
tokio-rayon = "2.1"
tower = "0.4"
tower-http = { version = "0.4", features = ["normalize-path", "trace", "validate-request"] }
tokio-stream = "0.1"
tracing = "0.1"
tracing-opentelemetry = "0.21"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
url = { version = "2", features = ["serde"] }
urlencoding = "2.1.3"
uuid = { version = "1.23.0", features = ["v4"] }
validator = { version = "0.16", features = ["derive"] }
zerocopy = { version = "0.6.6", features = ["alloc", "simd"] }
zune-inflate = "0.2.54"
[dev-dependencies]
criterion = { version = "0.4", features = ["async_tokio", "html_reports"] }
regex = "1"
serde_test = "1.0"
[[bench]]
name = "byte_order"
harness = false
[[bench]]
name = "operations"
harness = false
[[bench]]
name = "s3_client"
harness = false
[[bench]]
name = "shuffle"
harness = false
[[bench]]
name = "compression"
harness = false
[lints.clippy]
result_large_err = "allow"