Skip to content

Commit

Permalink
fix: fix crypto crate for publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
zensh committed Jan 8, 2025
1 parent 731072b commit bea14d4
Show file tree
Hide file tree
Showing 12 changed files with 152 additions and 258 deletions.
145 changes: 14 additions & 131 deletions Cargo.lock

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

6 changes: 1 addition & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ strip = true
opt-level = 's'

[workspace.package]
version = "0.2.0"
version = "0.2.1"
edition = "2021"
repository = "https://github.com/ldclabs/ic-tee"
keywords = ["tee", "canister", "icp", "nitro"]
Expand All @@ -43,13 +43,11 @@ clap = { version = "4.5", features = ["derive"] }
candid = "0.10"
ciborium = "0.2"
const-hex = "1"
futures = "0.3"
lazy_static = "1.5"
serde = "1"
serde_json = "1"
serde_bytes = "0.11"
sha2 = "0.10"
sha3 = "0.10"
ic-cdk = "0.17"
ic-stable-structures = "0.6"
ic-canister-sig-creation = "1.1"
Expand All @@ -61,7 +59,6 @@ getrandom = { version = "0.2", features = ["custom"] }
coset = "0.3"
x509-parser = { version = "0.16" }
ed25519-consensus = "2.1"
x25519-dalek = { version = "2", features = ["static_secrets"] }
rand = "0.8"
tokio = { version = "1", features = ["full"] }
tokio-util = "0.7"
Expand All @@ -83,7 +80,6 @@ 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" }
Expand Down
6 changes: 5 additions & 1 deletion canister_ids.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"__Candid_UI": {
"local": "bw4dl-smaaa-aaaaa-qaacq-cai"
},
"ic_tee_identity": {
"ic": "e7tgb-6aaaa-aaaap-akqfa-cai"
"ic": "e7tgb-6aaaa-aaaap-akqfa-cai",
"local": "e7tgb-6aaaa-aaaap-akqfa-cai"
}
}
4 changes: 0 additions & 4 deletions src/ic_tee_agent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ ic_tee_cdk = { path = "../ic_tee_cdk", version = "0.2" }
base64 = { workspace = true }
candid = { workspace = true }
ed25519-consensus = { workspace = true }
x25519-dalek = { workspace = true }
ciborium = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
Expand All @@ -32,9 +31,6 @@ 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 }
structured-logger = { workspace = true }
Loading

0 comments on commit bea14d4

Please sign in to comment.