Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
crowlKats committed Jan 8, 2025
1 parent 5e035ef commit 8d193b1
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 18 deletions.
47 changes: 32 additions & 15 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ repository = "https://github.com/denoland/deno_doc"
members = ["lib"]

[workspace.dependencies]
deno_graph = { version = "0.86.6", default-features = false, features = ["symbols"] }
deno_graph = { version = "0.87.0", default-features = false, features = ["symbols"] }
deno_ast = { version = "0.44.0" }
import_map = "0.20.0"
import_map = "0.21.0"
serde = { version = "1.0.204", features = ["derive"] }

[lib]
Expand Down
4 changes: 3 additions & 1 deletion examples/ddoc/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ impl Loader for SourceFileLoader {
content: content.into(),
})
})
.map_err(|err| err.into())
.map_err(|err| {
deno_graph::source::LoadError::Other(std::sync::Arc::new(err))
})
} else {
Ok(None)
};
Expand Down

0 comments on commit 8d193b1

Please sign in to comment.