Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.
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
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@ serde = { version = "1.0.203" }
serde_json = { version = "1.0.120" }
sha3 = { version = "0.10" }
shellexpand = { version = "3.1.0" }

# below dependency is also used in tee/Cargo.toml workspace
shielder-circuits = { git = "https://github.com/Cardinal-Cryptography/zkOS-circuits", rev = "df31437" }

testcontainers = { version = "0.19.0" }
thiserror = { version = "2.0.9" }
time = { version = "0.3.37" }
Expand Down
6 changes: 3 additions & 3 deletions tee/Cargo.lock

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

11 changes: 6 additions & 5 deletions tee/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,11 @@ tokio-vsock = "0.7.1"
tower-http = { version = "0.6.1" }
vsock = "0.5.1"

# below dependency is also used in master workspace Cargo.toml
shielder-circuits = { git = "https://github.com/Cardinal-Cryptography/zkOS-circuits", rev = "df31437" }
ecies-encryption-lib = { git = "https://github.com/Cardinal-Cryptography/ecies-encryption-lib", branch = "main" }

# This is not ideal - one workspace depends on another, but as long as it reproducibly produces
# the same measurements, we are good
type-conversions = { git = "https://github.com/Cardinal-Cryptography/zkOS-monorepo", rev = "4ff7e5a" }
powers-of-tau = { git = "https://github.com/Cardinal-Cryptography/zkOS-monorepo", rev = "4ff7e5a" }
ecies-encryption-lib = { git = "https://github.com/Cardinal-Cryptography/ecies-encryption-lib", rev = "a03b55e37d610aa9babf4719ffaea6e61fe7655a" }

# below dependencies contains a rev which is also used in tee/nix/flake.nix, which is far from ideal since one needs to bump it there as well
type-conversions = { git = "https://github.com/Cardinal-Cryptography/zkOS-monorepo", rev = "374a0d5dea2128e9b5100ede6daecc9253a241d9" }
powers-of-tau = { git = "https://github.com/Cardinal-Cryptography/zkOS-monorepo", rev = "374a0d5dea2128e9b5100ede6daecc9253a241d9" }
3 changes: 2 additions & 1 deletion tee/nix/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@
inputs.nixpkgs.follows = "nixpkgs";
};

# below dependency is also used in tee/Cargo.toml, which is far from ideal since one needs to bump it there as well
zkOS-monorepo = {
url = "git+https://github.com/Cardinal-Cryptography/zkOS-monorepo?rev=1852b2809325e1e089def6dbdf34c03640c06c0c";
url = "git+https://github.com/Cardinal-Cryptography/zkOS-monorepo?rev=374a0d5dea2128e9b5100ede6daecc9253a241d9";
flake = false;
};
};
Expand Down
Loading