diff --git a/rnet-example/Cargo.toml b/rnet-example/Cargo.toml index 738e3bb..154977b 100644 --- a/rnet-example/Cargo.toml +++ b/rnet-example/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rnet-example" -version = "0.3.0" +version = "0.3.1" edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -8,5 +8,5 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -rnet = { version = "0.3.0", path = "../rnet" } +rnet = { version = "0.3.1", path = "../rnet" } linkme = "0.2.7" diff --git a/rnet-gen/Cargo.toml b/rnet-gen/Cargo.toml index 372dfe3..17e0f6a 100644 --- a/rnet-gen/Cargo.toml +++ b/rnet-gen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rnet-gen" -version = "0.3.0" +version = "0.3.1" edition = "2018" readme = "../README.md" license = "MIT OR Apache-2.0" @@ -11,7 +11,7 @@ description = "Generator for rnet." [dependencies] libloading = "0.7.1" -rnet = { version = "0.3.0", path = "../rnet" } +rnet = { version = "0.3.1", path = "../rnet" } structopt = "0.3" anyhow = "1.0" heck = "0.3.3" diff --git a/rnet-macros/Cargo.toml b/rnet-macros/Cargo.toml index 98efded..2aaefe7 100644 --- a/rnet-macros/Cargo.toml +++ b/rnet-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rnet-macros" -version = "0.3.0" +version = "0.3.1" edition = "2018" readme = "../README.md" license = "MIT OR Apache-2.0" diff --git a/rnet-tests/Cargo.toml b/rnet-tests/Cargo.toml index 3b9fa1b..34db548 100644 --- a/rnet-tests/Cargo.toml +++ b/rnet-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rnet-tests" -version = "0.3.0" +version = "0.3.1" edition = "2018" readme = "../README.md" license = "MIT OR Apache-2.0" @@ -12,5 +12,5 @@ description = "Tests for rnet." crate-type = ["cdylib"] [dependencies] -rnet = { version = "0.3.0", path = "../rnet" } +rnet = { version = "0.3.1", path = "../rnet" } linkme = "0.2.7" diff --git a/rnet/Cargo.toml b/rnet/Cargo.toml index 4582121..1d49242 100644 --- a/rnet/Cargo.toml +++ b/rnet/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rnet" -version = "0.3.0" +version = "0.3.1" edition = "2018" readme = "../README.md" license = "MIT OR Apache-2.0" @@ -11,7 +11,7 @@ description = "Easily call into Rust from C# or other .net langauges." [dependencies] linkme = "0.2.7" -rnet-macros = { version = "0.3.0", path = "../rnet-macros" } +rnet-macros = { version = "0.3.1", path = "../rnet-macros" } uuid = { version = "0.8.2", optional = true } chrono = { version = "0.4.19", optional = true } rustversion = "1.0.14"