-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
37 lines (33 loc) · 913 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
34
35
36
37
[workspace]
members = [
"alloc",
"io",
"io/untrusted",
"panic",
"panic/sys",
"sync",
]
exclude = [
"test_enclave",
]
# We need to explicitly specify resolver 2.
# We shouldn't have to per https://doc.rust-lang.org/edition-guide/rust-2021/default-cargo-resolver.html, but that does not appear to be the case
resolver = "2"
[workspace.package]
authors = ["MobileCoin"]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/mobilecoinfoundation/sgx-std"
rust-version = "1.68"
[profile.release]
lto = "thin"
[workspace.metadata.release]
shared-version = true
dev-version-ext = "beta.0"
consolidate-commits = true
consolidate-pushes = true
tag-name = "v{{version}}"
pre-release-replacements = [
# Files listed here must exist in all crates in this workspace
{ file = "README.md", search = "mc-sgx-[a-z-]+/[0-9.]+", replace = "{{crate_name}}/{{version}}" },
]