-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCargo.toml
33 lines (28 loc) · 889 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
33
[package]
name = "aws-mpl-test-vectors"
version = "0.1.0"
edition = "2021"
rust-version = "1.80.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
wrapped-client = []
[dependencies]
aws-config = "1.5.15"
aws-lc-rs = "=1.12.2"
aws-lc-sys = "0.25.1"
aws-sdk-dynamodb = "1.55.0"
aws-sdk-kms = "1.51.0"
aws-smithy-runtime-api = {version = "1.7.3", features = ["client"] }
aws-smithy-types = "1.2.12"
chrono = "0.4.39"
cpu-time = "1.0.0"
dafny_runtime = { path = "../../../smithy-dafny/TestModels/dafny-dependencies/dafny_runtime_rust", features = ["sync"]}
dashmap = "6.1.0"
pem = "3.0.4"
tokio = {version = "1.43.0", features = ["full"] }
uuid = { version = "1.12.1", features = ["v4"] }
[dev-dependencies]
aws-mpl-test-vectors = { path = ".", features = ["wrapped-client"] }
[[bin]]
name = "test-vectors"
path = "src/main.rs"