-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
43 lines (36 loc) · 1.1 KB
/
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
43
[package]
name = "sentry_arroyo"
version = "2.19.12"
authors = ["Sentry <[email protected]>"]
description = "A library for working with streaming data."
repository = "https://github.com/getsentry/arroyo"
license = "Apache-2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
path = "rust-arroyo/src/lib.rs"
[dependencies]
chrono = "0.4.26"
coarsetime = "0.1.33"
once_cell = "1.18.0"
rand = "0.8.5"
rdkafka = { version = "0.37.0", features = ["cmake-build", "tracing"] }
sentry = { version = "0.32.0" }
serde = { version = "1.0.137", features = ["derive"] }
serde_json = "1.0.81"
thiserror = "1.0"
tokio = { version = "1.19.2", features = ["full"] }
tracing = "0.1.40"
uuid = { version = "1.5.0", features = ["v4"] }
parking_lot = "0.12.1"
[dev-dependencies]
tracing-subscriber = "0.3.18"
[[example]]
name = "base_processor"
path = "rust-arroyo/examples/base_processor.rs"
[[example]]
name = "transform_and_produce"
path = "rust-arroyo/examples/transform_and_produce.rs"
[[example]]
name = "base_consumer"
path = "rust-arroyo/examples/base_consumer.rs"