forked from aws-samples/aurora-dsql-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (33 loc) · 972 Bytes
/
Cargo.toml
File metadata and controls
41 lines (33 loc) · 972 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
36
37
38
39
40
41
[package]
name = "dsql-examples"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.98"
aws-config = "1.6.2"
aws-sdk-dsql = "1.19.0"
tokio = { version = "1", features = ["full"] }
# Define each example as a separate binary. This ensures customers can easily execute individual examples without
# modifying code or running the test suite.
[[bin]]
name = "create_single_region_cluster"
path = "src/bin/create_single_region_cluster.rs"
[[bin]]
name = "create_multi_region_clusters"
path = "src/bin/create_multi_region_clusters.rs"
[[bin]]
name = "get_cluster"
path = "src/bin/get_cluster.rs"
[[bin]]
name = "update_cluster"
path = "src/bin/update_cluster.rs"
[[bin]]
name = "delete_single_region_cluster"
path = "src/bin/delete_single_region_cluster.rs"
[[bin]]
name = "delete_multi_region_clusters"
path = "src/bin/delete_multi_region_clusters.rs"
# Make example files available as libraries for testing
[lib]
name = "dsql_examples"
path = "src/lib.rs"