-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
46 lines (43 loc) · 1.38 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
46
[package]
name = "tracing-cloudwatch"
version = "0.3.0"
edition = "2021"
license = "MIT"
description = "tracing-subscriber layer that sends your application's tracing events(logs) to AWS CloudWatch Logs"
repository = "https://github.com/ymgyt/tracing-cloudwatch"
readme = "README.md"
keywords = ["tracing", "aws", "cloudwatch"]
categories = ["development-tools::debugging"]
[features]
default = []
rusoto = ["rusoto_logs/default", "rusoto_core/default"]
rusoto_rustls = ["rusoto_logs/rustls", "rusoto_core/rustls"]
awssdk = ["aws-sdk-cloudwatchlogs"]
ordered_logs = []
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
aws-sdk-cloudwatchlogs = { version = "1", default-features = false, optional = true }
chrono = "0.4"
rusoto_core = { version = "0.48", default-features = false, optional = true }
rusoto_logs = { version = "0.48", default-features = false, optional = true }
thiserror = "2.0"
tokio = { version = "1", features = ["rt", "sync", "time", "macros"] }
tracing = { version = "0.1", default-features = false, features = ["std"] }
tracing-core = "0.1"
tracing-subscriber = { version = "0.3", default-features = false, features = [
"std",
"fmt",
"smallvec",
] }
[dev-dependencies]
aws-config = "1"
insta = "1.40.0"
tokio = { version = "1.28.0", features = [
"rt",
"rt-multi-thread",
"macros",
"time",
] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["json"] }