Skip to content
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
7 changes: 2 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions fortanix-vme/fortanix-vme-abi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ authors = ["Fortanix, Inc."]
[dependencies]
core = { version = "1.0.0", optional = true, package = "rustc-std-workspace-core" }
alloc = { version = "1.0.0", optional = true, package = "rustc-std-workspace-alloc" }
compiler_builtins = { version = "0.1.152", optional = true }
# Avoid using patch section due to https://github.com/rust-lang/cargo/issues/10031
serde = { git = "https://github.com/fortanix/serde.git", branch = "master", default-features = false, features = ["derive", "alloc"] }
vsock = { version = "0.2.4", optional = true }
Expand All @@ -18,4 +17,4 @@ vsock = { version = "0.2.4", optional = true }
std = ["serde/std", "vsock"]
default = ["std"]
docs = []
rustc-dep-of-std = ["core", "alloc", "compiler_builtins/rustc-dep-of-std", "serde/rustc-dep-of-std"]
rustc-dep-of-std = ["core", "alloc", "serde/rustc-dep-of-std"]
3 changes: 1 addition & 2 deletions intel-sgx/fortanix-sgx-abi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,10 @@ categories = ["os"]

[dependencies]
core = { version = "1.0.0", optional = true, package = "rustc-std-workspace-core" }
compiler_builtins = { version = "0.1.152", optional = true }

[features]
docs = []
rustc-dep-of-std = ["core", "compiler_builtins/rustc-dep-of-std"]
rustc-dep-of-std = ["core"]

[package.metadata.docs.rs]
features = ["docs"]
3 changes: 1 addition & 2 deletions intel-sgx/insecure-time/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ categories = ["os", "hardware-support"]
[dependencies]
alloc = { version = "1.0.0", optional = true, package = "rustc-std-workspace-alloc" }
core = { version = "1.0.0", optional = true, package = "rustc-std-workspace-core" }
compiler_builtins = { version = "0.1.152", optional = true }
clap = { version = "4.5", features = ["derive"], optional = true }

[dev-dependencies]
Expand All @@ -24,7 +23,7 @@ rand = "0.8"
[features]
default = ["std", "clap"]
estimate_crystal_clock_freq = []
rustc-dep-of-std = ["alloc", "core", "compiler_builtins/rustc-dep-of-std"]
rustc-dep-of-std = ["alloc", "core"]
std = []

# Features only available during testing:
Expand Down