diff --git a/pdl-compiler/Cargo.toml b/pdl-compiler/Cargo.toml index 113fcf8..a50b93f 100644 --- a/pdl-compiler/Cargo.toml +++ b/pdl-compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pdl-compiler" -version = "0.2.1" +version = "0.2.2" edition = "2021" description = "Parser and serializer generator for protocol binary packets" repository = "https://github.com/google/pdl/" diff --git a/pdl-derive/Cargo.toml b/pdl-derive/Cargo.toml index 5efbc36..3c0730e 100644 --- a/pdl-derive/Cargo.toml +++ b/pdl-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pdl-derive" -version = "0.2.1" +version = "0.2.2" edition = "2021" description = "PDL's derive macro" repository = "https://github.com/google/pdl/" @@ -21,12 +21,12 @@ proc-macro = true [dependencies] codespan-reporting = "0.11.1" -pdl-compiler = {path = "../pdl-compiler", version = "0.2.1"} +pdl-compiler = {path = "../pdl-compiler", version = "0.2.2"} 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.2.1"} +pdl-runtime = {path = "../pdl-runtime", version = "0.2.2"} bytes = "1.4.0" diff --git a/pdl-runtime/Cargo.toml b/pdl-runtime/Cargo.toml index 56311b3..9f6ad40 100644 --- a/pdl-runtime/Cargo.toml +++ b/pdl-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pdl-runtime" -version = "0.2.1" +version = "0.2.2" edition = "2021" description = "PDL's runtime library" repository = "https://github.com/google/pdl/"