Skip to content

Commit

Permalink
Merge branch 'main' into feat/trustgraph-integration
Browse files Browse the repository at this point in the history
  • Loading branch information
mattyg committed Sep 18, 2024
2 parents 6326440 + 6550dd5 commit 3c3380e
Show file tree
Hide file tree
Showing 30 changed files with 1,872 additions and 1,057 deletions.
560 changes: 519 additions & 41 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ members = ["dnas/*/zomes/coordinator/*", "dnas/*/zomes/integrity/*", "crates/*"]
resolver = "2"

[workspace.dependencies]
hdi = "=0.4.1"
hdk = "=0.3.1"
serde = "=1.0.197"
hdi = "=0.4.2"
hdk = "=0.3.2"
serde = "1.0"
paste = "1.0"
rand = "0.8.5"
hc_prefix_index = "0.10.0"
hc_prefix_index = "0.12.0"
regex = "1.10.3"
hc_zome_profiles_coordinator = { git = "https://github.com/holochain-open-dev/profiles.git", rev = "a1a487c8d6a8fd9910ba9b3f26e47df0bf0d09ae" }
hc_zome_profiles_integrity = { git = "https://github.com/holochain-open-dev/profiles.git", rev = "a1a487c8d6a8fd9910ba9b3f26e47df0bf0d09ae" }
Expand Down
1 change: 1 addition & 0 deletions crates/mews_types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ pub enum LinkTarget {
}

#[derive(Serialize, Deserialize, SerializedBytes, Debug, Clone, PartialEq, Eq)]
#[serde(tag = "type", content = "original_action_hash")]
pub enum MewType {
Original,
Reply(ActionHash),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ pub fn remove_hash_for_liker(input: RemoveHashForLikerInput) -> ExternResult<()>
let links = get_links(
GetLinksInputBuilder::try_new(
input.base_liker.clone(),
LinkTypes::HashToLikers.try_into_filter()?,
LinkTypes::LikerToHashes.try_into_filter()?,
)?
.build(),
)?;
Expand Down
4 changes: 2 additions & 2 deletions dnas/mewsfeed/zomes/coordinator/mews/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ name = "mews"
hdk = { workspace = true }
serde = { workspace = true }
regex = { workspace = true }
mews_integrity = { workspace = true }
hc_prefix_index = { git = "https://github.com/holochain-open-dev/holochain-prefix-index" }
mews_integrity = { workspace = true }
hc_prefix_index = { workspace = true }
profiles_integrity = { workspace = true }
mews_types = { workspace = true }
rand = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion dnas/mewsfeed/zomes/integrity/mews/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ name = "mews_integrity"
hdi = { workspace = true }
hdk = { workspace = true }
serde = { workspace = true }
hc_prefix_index = { git = "https://github.com/holochain-open-dev/holochain-prefix-index" }
hc_prefix_index = { workspace = true }
mews_types = { workspace = true }
Loading

0 comments on commit 3c3380e

Please sign in to comment.