diff --git a/Cargo.lock b/Cargo.lock index 4e469be..9f6fd61 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -836,18 +836,6 @@ dependencies = [ "autocfg", ] -[[package]] -name = "nvidia-remote-attestation-gpu" -version = "0.1.0" -dependencies = [ - "nscq", - "nvml-wrapper", - "once_cell", - "rand", - "thiserror 2.0.12", - "tracing", -] - [[package]] name = "nvml-wrapper" version = "0.10.0" @@ -1073,7 +1061,7 @@ dependencies = [ ] [[package]] -name = "remote-attestation" +name = "remote-attestation-verifier" version = "0.1.0" dependencies = [ "base64", @@ -1320,9 +1308,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "signal-hook-registry" -version = "1.4.2" +version = "1.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" +checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410" dependencies = [ "libc", ] @@ -1596,6 +1584,18 @@ dependencies = [ "tokio", ] +[[package]] +name = "topology" +version = "0.1.0" +dependencies = [ + "nscq", + "nvml-wrapper", + "once_cell", + "rand", + "thiserror 2.0.12", + "tracing", +] + [[package]] name = "tower" version = "0.5.2" diff --git a/remote-attestation-verifier/Cargo.toml b/remote-attestation-verifier/Cargo.toml index e54932b..3f84ec1 100644 --- a/remote-attestation-verifier/Cargo.toml +++ b/remote-attestation-verifier/Cargo.toml @@ -1,8 +1,8 @@ [package] -name = "remote-attestation" +name = "remote-attestation-verifier" version = "0.1.0" edition = "2021" -description = "Remote attestation for confidential compute NVIDIA GPUs" +description = "Remote attestation verifier for NVIDIA confidential computing" license = "MIT OR Apache-2.0" authors = ["Atoma Network"] diff --git a/topology/Cargo.toml b/topology/Cargo.toml index c520187..7ac78bb 100644 --- a/topology/Cargo.toml +++ b/topology/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "nvidia-remote-attestation-gpu" +name = "topology" version.workspace = true edition.workspace = true license.workspace = true