forked from controlant-org/r5d3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (27 loc) · 975 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
[package]
name = "r5d3"
version = "0.2.7"
edition = "2021"
authors = ["LOU Xun <xun.lou@controlant.com>"]
description = "DNS automation for multi-account Route53 setup"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
fastrand = "2"
# AWS
control-aws = { git = "https://github.com/controlant-org/control-aws.git", tag = "v0.3.1" }
aws-config = { version = "1", features = ["behavior-version-latest"] }
aws-sdk-route53 = "1"
aws-sdk-acm = "1"
aws-sdk-sts = "1"
# Runtime
tokio = { version = "1", features = ["full"] }
# Tracing
tracing = { version = "0.1", features = ["attributes"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
opentelemetry = "0.22"
opentelemetry_sdk = { version = "0.22", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.15", features = ["grpc-tonic"] }
tracing-opentelemetry = "0.23"
# [patch.'https://github.com/controlant-org/control-aws']
# control-aws = { path = "../control-aws" }