Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 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 codeview/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ms-codeview"
version = "0.1.6"
version = "0.1.7"
edition = "2024"
description = "Definitions for use with CodeView debugging symbols"
authors = ["Arlie Davis <ardavis@microsoft.com>"]
Expand Down
6 changes: 3 additions & 3 deletions pdb-mcp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ms-pdb-mcp"
version = "0.1.21"
version = "0.1.22"
edition = "2024"
description = "MCP server for analyzing PDB files using the ms-pdb library."
authors = ["Arlie Davis <ardavis@microsoft.com>"]
Expand All @@ -24,13 +24,13 @@ rustc-demangle = "0.1"
cpp_demangle = "0.5"

[dependencies.ms-pdb]
version = "0.1.21"
version = "0.1.22"
path = "../pdb"

[dependencies.ms-coff]
version = "0.1.0"
path = "../coff"

[dependencies.ms-codeview]
version = "0.1.0"
version = "0.1.7"
path = "../codeview"
4 changes: 2 additions & 2 deletions pdb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ms-pdb"
version = "0.1.21"
version = "0.1.22"
edition = "2024"
description = "Reads Microsoft Program Database (PDB) files"
authors = ["Arlie Davis <ardavis@microsoft.com>"]
Expand All @@ -27,7 +27,7 @@ zerocopy = { workspace = true, features = ["alloc", "derive"] }
zerocopy-derive.workspace = true

[dependencies.ms-codeview]
version = "0.1.6"
version = "0.1.7"
path = "../codeview"

[dependencies.ms-coff]
Expand Down
4 changes: 2 additions & 2 deletions pdbtool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pdbtool"
version = "0.1.21"
version = "0.1.22"
edition = "2024"
description = "A tool for reading Program Database (PDB) files and displaying information about them."
authors = ["Arlie Davis <ardavis@microsoft.com>"]
Expand Down Expand Up @@ -34,5 +34,5 @@ version = "0.1.0"
path = "../coff"

[dependencies.ms-pdb]
version = "0.1.21"
version = "0.1.22"
path = "../pdb"