Skip to content

Commit

Permalink
feat: add more features
Browse files Browse the repository at this point in the history
  • Loading branch information
zensh committed Jan 8, 2025
1 parent 9363073 commit 1b35191
Show file tree
Hide file tree
Showing 18 changed files with 1,391 additions and 564 deletions.
287 changes: 211 additions & 76 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ ic-stable-structures = "0.6"
ic-canister-sig-creation = "1.1"
ic-certification = "3.0"
ic-agent = "0.39"
ic_cose_types = "0.5"
ic_cose_types = "0.6"
ic_cose = "0.6"
getrandom = { version = "0.2", features = ["custom"] }
coset = "0.3"
x509-parser = { version = "0.16" }
Expand All @@ -82,5 +83,8 @@ reqwest = { version = "0.12", features = [
], default-features = true }
libc = "0.2"
thiserror = "2"
xid = "1.1"
ic-types = { git = "https://github.com/dfinity/ic/", rev = "5d202894864f4db4a5a46f44422aebc80c3d321b" }
ic-crypto-standalone-sig-verifier = { git = "https://github.com/dfinity/ic/", rev = "5d202894864f4db4a5a46f44422aebc80c3d321b" }
ic-crypto-secp256k1 = { git = "https://github.com/dfinity/ic/", rev = "5d202894864f4db4a5a46f44422aebc80c3d321b" }
ic-crypto-ed25519 = { git = "https://github.com/dfinity/ic/", rev = "5d202894864f4db4a5a46f44422aebc80c3d321b" }
3 changes: 3 additions & 0 deletions src/ic_tee_agent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,13 @@ bytes = { workspace = true }
mime = { workspace = true }
thiserror = { workspace = true }
lazy_static = { workspace = true }
ic_cose = { workspace = true }
ic_cose_types = { workspace = true }
ic-types = { workspace = true }
ic-canister-sig-creation = { workspace = true }
ic-crypto-standalone-sig-verifier = { workspace = true }
ic-crypto-secp256k1 = { workspace = true }
ic-crypto-ed25519 = { workspace = true }

[dev-dependencies]
const-hex = { workspace = true }
Loading

0 comments on commit 1b35191

Please sign in to comment.