-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 972 Bytes
/
Cargo.toml
File metadata and controls
33 lines (31 loc) · 972 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
32
33
[package]
name = "disney-kinesis-client"
version = "0.1.0"
edition = "2021"
[dependencies]
async-process = "2.4.0"
async-rwlock = "1.3.1"
async-trait = "0.1.89"
aws-config = { version = "1.8.5", features = ["behavior-version-latest"] }
aws-sdk-cloudwatch = "1.88.0"
aws-sdk-dynamodb = "1.91.0"
aws-sdk-kinesis = "1.87.0"
aws-sdk-schemas = "1.82.0"
aws-smithy-runtime-api = "1.9.0"
aws-smithy-types = "1.3.2"
derive_more = { version = "2.0.1", features = ["display", "debug", "error", "from"] }
futures = "0.3.31"
itertools = "0.14.0"
md5 = "0.8.0"
prost = "0.14"
rand = "0.9.2"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.143"
tokio = { version = "1", features = ["full"] }
tokio-util = "0.7.16"
tracing = "0.1.41"
uuid = { version = "1.18.0", features = ["v4"] }
# dependency of aws-config, there's a security advisory for 0.10.3
zerovec-derive = "0.11.1"
[dev-dependencies]
tracing-subscriber = { version = "0.3.19", features = ["json"] }