-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 935 Bytes
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 935 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
34
35
[package]
name = "lorerunner"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = { version = "1.0.72" }
# AWS crates
aws-config = { version = "^1", features = ["behavior-version-latest"] }
aws-sdk-codedeploy = { version = "^1" }
aws-sdk-iam = { version = "^1" }
aws-sdk-ec2 = { version = "^1" }
# Logging
env_logger = "0.10.0"
# Easy to use, secure, non opinionated JWT (JSON Web Tokens) implementation for Rust.
jwt-simple = "0.11.7"
# Logging
log = { version = "0.4.20", features = ["serde"] }
# Rusty Object Notation
ron = { version = "0.8.1" }
serde = { version = "1", features = ["derive"] }
# Time
time = { version = "0.3.29", features = [
"serde",
"formatting",
"std",
"parsing",
] }
# Simple, safe HTTP client
ureq = { version = "2.8.0", features = ["json", "tls"] }
tokio = { version = "1", features = ["full"] }