Skip to content

Commit

Permalink
Complete implementation of fetch signature selection and test
Browse files Browse the repository at this point in the history
  • Loading branch information
ThetaSinner committed Mar 29, 2024
1 parent 02e5bd0 commit 47d00ed
Show file tree
Hide file tree
Showing 10 changed files with 553 additions and 36 deletions.
3 changes: 3 additions & 0 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ nanoid = "0.4.0"
anyhow = "1.0.81"
minisign-verify = "0.2.1"
url = "2.5.0"
rand = { version = "0.8.5", default-features = false }
rand = { version = "0.8.5", default-features = false, features = ["std", "std_rng"] }

signing_keys_types = { path = "types/signing_keys" }
signing_keys = { path = "dnas/checked/zomes/coordinator/signing_keys" }
Expand Down
7 changes: 6 additions & 1 deletion dnas/checked/zomes/coordinator/fetch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ hdk = { workspace = true }

url = { workspace = true }
serde = { workspace = true }
minisign-verify = { workspace = true }
rand = { workspace = true }

signing_keys_types = { workspace = true }
fetch_integrity = { workspace = true }
fetch_types = { workspace = true }
fetch_types = { workspace = true }

[dev-dependencies]
chrono = { workspace = true }
Loading

0 comments on commit 47d00ed

Please sign in to comment.