-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
45 lines (43 loc) · 1.48 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
44
45
[package]
name = "coralogix-aws-shipper"
version = "1.1.2"
edition = "2021"
[dependencies]
aws-smithy-runtime-api = "1.7.1"
aws_lambda_events = { version = "0.15.1", default-features = false, features = ["s3", "sns", "cloudwatch_logs", "sqs", "kinesis", "kafka", "ecr_scan"] }
aws-config = "1.5.4"
aws-sdk-s3 = "1.41.0"
aws-sdk-ecr = "1.35.0"
aws-sdk-secretsmanager = "1.39.0"
cx_sdk_rest_logs = { git = "ssh://[email protected]/coralogix/coralogix-sdk-rust", default-features = false, features=["rustls"] }
cx_sdk_core = { git = "ssh://[email protected]/coralogix/coralogix-sdk-rust", default-features = false}
derive_more = "0.99.18"
fancy-regex ="0.13.0"
flate2 = "1.0"
futures = "0.3.17"
http = "1.1.0"
itertools = "0.12.0"
lambda_runtime = "0.10.0"
thiserror = "1.0.61"
time = "0.3.30"
tokio = { version = "1.36.0", features = ["full"] }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3", default-features = false, features = ["fmt", "env-filter"] }
serde_json = "1.0.120"
serde = { version = "1.0.203", features = ["derive"] }
percent-encoding = "2.3.1"
async-trait = "0.1.74"
temp-env = { version = "0.3.6", features = ["async_closure"] }
aws-smithy-runtime = { version = "1.1.7", features = ["test-util"] }
aws-smithy-types = "1.1.7"
base64 = "0.22.0"
aws-sdk-sqs = "1.18.0"
chrono = "0.4.37"
async-recursion = "1.1.0"
md5 = "0.7.0"
anyhow = "1.0.86"
aws-sdk-sts = "1.49.0"
once_cell = "1.20.2"
[dev-dependencies]
pretty_assertions_sorted = "1.2.1"
test-log = "0.2.16"