-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (24 loc) · 864 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
[package]
name = "cloud-node-discovery"
version = "0.2.0"
edition = "2021"
license = "MIT"
authors = ["Ville Vesilehto <[email protected]>"]
description = "Cloud node discovery library"
repository = "https://github.com/thevilledev/cloud-node-discovery-rs"
documentation = "https://docs.rs/cloud-node-discovery"
categories = ["api-bindings", "network-programming"]
[dependencies]
async-trait = "0.1"
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.0", features = ["full"] }
# Provider-specific dependencies
aws-config = { version = "1.0", features = ["behavior-version-latest"], optional = true }
aws-sdk-ec2 = { version = "1.0", optional = true }
upcloud-sdk = { version = "0.1.0", optional = true }
[features]
default = ["all"]
aws = ["aws-config", "aws-sdk-ec2"]
upcloud = ["upcloud-sdk"]
all = ["aws", "upcloud"]