diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2024-09-26 06:08:03 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-26 13:08:03 +0000 |
commit | 92529697807a652b627a7dbd4f5d0c3ad7bacf59 (patch) | |
tree | a47cf7767a0c30854bce150d3fc1e8a06c997736 | |
parent | 6be7d5139870ddbfef8f13dbe8cd4c59c34acc10 (diff) |
feat(tools/doc): display subitems in symbol overviews where applicable (#25885)
For https://github.com/denoland/deno_doc/pull/635
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index bc1103511..063811848 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1489,9 +1489,9 @@ dependencies = [ [[package]] name = "deno_doc" -version = "0.148.0" +version = "0.150.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "144fa07977ba9eeeb98bcd267b7f0a6f8033f0f1f20fd210e669b3c4f30cefa2" +checksum = "c762829006b555837691b7016828eb1f93acf0a4ff344357b946898ea5b5610d" dependencies = [ "ammonia", "anyhow", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 42ac28530..b4fd053d7 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -67,7 +67,7 @@ deno_ast = { workspace = true, features = ["bundler", "cjs", "codegen", "proposa deno_cache_dir = { workspace = true } deno_config = { version = "=0.35.0", features = ["workspace", "sync"] } deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] } -deno_doc = { version = "0.148.0", features = ["html", "syntect"] } +deno_doc = { version = "0.150.0", features = ["html", "syntect"] } deno_graph = { version = "=0.82.3" } deno_lint = { version = "=0.67.0", features = ["docs"] } deno_lockfile.workspace = true |