-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 998 Bytes
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 998 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
[package]
name = "brutus"
version = "0.1.0"
edition = "2021"
homepage = "https://github.com/scribd/brutus"
[dependencies]
zstd-sys = "=2.0.9"
arrow-array = "50.0.0"
async-std = { version = "1.12.0", features = ["attributes", "tokio1"] }
hora = "0.1.1"
rand = "0.8.5"
object_store = { version = "0.9.0", features = ["aws"] }
parquet = { version = "50.0.0", features = ["object_store", "serde", "serde_json", "json", "async"] }
serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.114"
tantivy = "0.21.1"
thiserror = "1.0.30"
tide = "0.16.0"
tide-tracing = { version = "0.1.1", features = ["request_id"]}
tracing = { version = "0.1.40", features = ["log"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "time", "chrono", "json"] }
url = "2.5.0"
[features]
default = []
# The integration feature just exists as a gate to allow for conditional exclusion of the tests which rely on docker-compose
integration = []
[dev-dependencies]
tide-testing = "0.1.3"