Skip to content

Commit

Permalink
migrate from my branch of json-ld to the author's branch
Browse files Browse the repository at this point in the history
  • Loading branch information
pchampin committed Dec 5, 2023
1 parent 733b45f commit 13ed07e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion jsonld/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ http_client = ["json-ld/reqwest"]

[dependencies]
iref = "2.2"
json-ld = { version = "0.15.0", git = "https://github.com/pchampin/json-ld", branch="wasm-0.15.0" }
json-ld = { version = "0.15.0", git = "https://github.com/timothee-haudebourg/json-ld", branch="0.15-wasm32" }
json-syntax = "0.9"
langtag = "0.3.4"
locspan = "0.7.12"
Expand Down
2 changes: 1 addition & 1 deletion jsonld/src/loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use json_syntax::Value;
use locspan::Location;
use sophia_iri::Iri;

pub use json_ld::{BoxFuture, FutureExt};
pub use json_ld::future::{BoxFuture, FutureExt};

/// A dummy document loader, that does not load anything.
pub type NoLoader =
Expand Down
2 changes: 1 addition & 1 deletion jsonld/src/loader/chain_loader.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use std::fmt::Debug;

use json_ld::future::{BoxFuture, FutureExt};
use json_ld::Loader;
use json_ld::{BoxFuture, FutureExt};
use json_syntax::Value;
use locspan::Location;

Expand Down
2 changes: 1 addition & 1 deletion jsonld/src/loader/closure_loader.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use super::*;
use json_ld::{BoxFuture, FutureExt};
use json_ld::future::{BoxFuture, FutureExt};
use json_ld::{Loader, RemoteDocument};
use json_syntax::Parse;
use locspan::{Location, Meta};
Expand Down
2 changes: 1 addition & 1 deletion jsonld/src/loader/file_url_loader.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use super::*;
use json_ld::{BoxFuture, FutureExt};
use json_ld::future::{BoxFuture, FutureExt};
use json_ld::{Loader, RemoteDocument};
use json_syntax::Parse;
use locspan::{Location, Meta};
Expand Down
2 changes: 1 addition & 1 deletion jsonld/src/loader/static_loader.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::{collections::HashMap, fmt::Debug};

use json_ld::{BoxFuture, FutureExt};
use json_ld::future::{BoxFuture, FutureExt};
use json_ld::{Loader, RemoteDocument};
use json_syntax::Value;
use locspan::{Location, Meta};
Expand Down

0 comments on commit 13ed07e

Please sign in to comment.