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
2 changes: 1 addition & 1 deletion pdl-compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pdl-compiler"
version = "0.4.2"
version = "0.4.3"
edition = "2021"
description = "Parser and serializer generator for protocol binary packets"
repository = "https://github.com/google/pdl/"
Expand Down
6 changes: 3 additions & 3 deletions pdl-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pdl-derive"
version = "0.4.2"
version = "0.4.3"
edition = "2021"
description = "PDL's derive macro"
repository = "https://github.com/google/pdl/"
Expand All @@ -24,12 +24,12 @@ proc-macro = true

[dependencies]
codespan-reporting = "0.13.1"
pdl-compiler = {path = "../pdl-compiler", version = "0.4.2"}
pdl-compiler = {path = "../pdl-compiler", version = "0.4.3"}
proc-macro2 = "1.0.66"
quote = "1.0.33"
syn = {version = "2.0.29", features = ["full"]}
termcolor = "1.2.0"

[dev-dependencies]
pdl-runtime = {path = "../pdl-runtime", version = "0.4.2"}
pdl-runtime = {path = "../pdl-runtime", version = "0.4.3"}
bytes = "1.4.0"
2 changes: 1 addition & 1 deletion pdl-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pdl-runtime"
version = "0.4.2"
version = "0.4.3"
edition = "2021"
description = "PDL's runtime library"
repository = "https://github.com/google/pdl/"
Expand Down
Loading