-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (37 loc) · 884 Bytes
/
Cargo.toml
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
[package]
name = "example"
description = "an example using scyllax"
version = "0.1.0"
license.workspace = true
edition.workspace = true
authors.workspace = true
repository.workspace = true
homepage.workspace = true
publish = false
[dependencies]
anyhow = "1"
serde.workspace = true
serde_json.workspace = true
scylla.workspace = true
scyllax = { path = "../scyllax", features = ["json"] }
tokio = { version = "1", features = ["full"] }
tracing.workspace = true
tracing-subscriber.workspace = true
uuid.workspace = true
tokio-stream = "0.1.14"
futures-util = "0.3.29"
futures = "0.3.29"
rayon = "1.8.0"
time = "0.3.34"
[features]
default = ["integration"]
integration = []
[dev-dependencies]
pretty_assertions = "1"
criterion = { version = "0.5", features = ["html_reports", "async_tokio"] }
[[bench]]
name = "bench"
harness = false
[[bin]]
name = "post"
path = "src/bin/post.rs"