-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (42 loc) · 943 Bytes
/
Cargo.toml
File metadata and controls
46 lines (42 loc) · 943 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
42
43
44
45
46
[workspace]
members = [
"aws-lc-rs",
"aws-lc-sys",
"aws-lc-fips-sys",
"aws-lc-rs-testing",
"links-testing",
"builder-test",
]
exclude = [
"scripts/tools/cargo-dig.rs",
"scripts/tools/semver.rs",
"scripts/tools/target-platform.rs",
"scripts/tests/assert_cpu_jitter_entropy.rs",
"scripts/tests/prefix_test.rs"
]
resolver = "2"
[workspace.dependencies]
bindgen = "0.72.0"
cc = "1.2.26"
cmake = "0.1.54"
dunce = "1.0.5"
fs_extra = "1.3.0"
regex = "1.11.1"
untrusted = "0.7.1"
zeroize = "1.8.1"
# The dependencies below do not affect our MSRV. They are only used as
# a dev-dependency or only used outside of our public crates.
# These can be updated to the latest versions.
clap = "4.4"
criterion = "0.8.2"
hex = "0.4.3"
lazy_static = "1.5.0"
openssl = "0.10.73"
paste = "1.0.15"
ring = "0.17.14"
toml_edit = "0.25.0"
[profile.bench]
lto = true
[profile.release-lto]
inherits = "release"
lto = true