Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add rust version to workspace for enclaves #3700

Merged
merged 1 commit into from
Nov 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion consensus/enclave/trusted/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,13 @@ edition = "2021"
description = "The MobileCoin Consensus Service's internal enclave entry point."
license = "GPL-3.0"
readme = "README.md"
rust-version = "1.74.0"
rust-version = { workspace = true }

[workspace]

[workspace.package]
rust-version = "1.74.0"

nick-mobilecoin marked this conversation as resolved.
Show resolved Hide resolved
[lib]
crate-type = ["staticlib"]

Expand Down
5 changes: 4 additions & 1 deletion fog/ingest/enclave/trusted/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@ version = "5.0.8"
authors = ["MobileCoin"]
edition = "2021"
license = "GPL-3.0"
rust-version = "1.74.0"
rust-version = { workspace = true }

# Declare as an empty workspace to not confuse cargo.
[workspace]

[workspace.package]
rust-version = "1.74.0"

[lib]
crate-type = ["staticlib"]

Expand Down
5 changes: 4 additions & 1 deletion fog/ledger/enclave/trusted/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@ version = "5.0.8"
authors = ["MobileCoin"]
edition = "2021"
license = "GPL-3.0"
rust-version = "1.74.0"
rust-version = { workspace = true }

# Declare as an empty workspace to not confuse cargo.
[workspace]

[workspace.package]
rust-version = "1.74.0"

[lib]
crate-type = ["staticlib"]

Expand Down
5 changes: 4 additions & 1 deletion fog/view/enclave/trusted/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,13 @@ description = "The MobileCoin Fog user-facing server's enclave entry point."
edition = "2021"
license = "GPL-3.0"
readme = "README.md"
rust-version = "1.74.0"
rust-version = { workspace = true }

[workspace]

[workspace.package]
rust-version = "1.74.0"

[lib]
crate-type = ["staticlib"]

Expand Down
Loading