-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (29 loc) · 958 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]
authors = ["Tyler Cook"]
description = "A command-line application for managing outpost"
edition = "2021"
license = "AGPL-3.0-only"
name = "outpost"
repository = "https://github.com/fossable/outpost"
rust-version = "1.74"
version = "0.0.8"
[dependencies]
anyhow = "1.0.86"
aws-config= { version = "1.5.3", optional = true, features = ["behavior-version-latest"] }
aws-sdk-ec2= { version = "1.55.0", optional = true }
axum = "0.7.5"
clap = { version = "4.5.4", features = ["string", "derive"] }
futures = "0.3.30"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
serde_yaml = "0.9.27"
tempfile = "3.10.1"
tokio = { version = "1.38.0", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
[build-dependencies]
anyhow = "1.0.86"
reqwest = { version = "0.12.4", features = ["blocking"] }
[features]
cloudflare = []
aws = [ "dep:aws-config", "dep:aws-sdk-ec2" ]