Skip to content

Commit

Permalink
Upgrade to 0.5.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
adetaylor committed Jan 5, 2021
1 parent daf8011 commit 8fd2f02
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

[package]
name = "autocxx"
version = "0.4.1"
version = "0.5.0"
authors = ["Adrian Taylor <adetaylor@chromium.org>"]
license = "MIT OR Apache-2.0"
description = "Safe autogenerated interop between Rust and C++"
Expand All @@ -24,8 +24,8 @@ keywords = ["ffi"]
categories = ["development-tools::ffi", "api-bindings"]

[dependencies]
autocxx-macro = { path="macro", version="0.4.1" }
autocxx-engine = { path="engine", version="0.4.1" }
autocxx-macro = { path="macro", version="0.5.0" }
autocxx-engine = { path="engine", version="0.5.0" }
cxx = "1.0.20" # needed because expansion of type_id refers to ::cxx

[workspace]
Expand Down
4 changes: 2 additions & 2 deletions demo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ edition = "2018"

[dependencies]
cxx = "1.0.20"
autocxx = { path = "..", version="0.4.1" }
autocxx = { path = "..", version="0.5.0" }

[build-dependencies]
autocxx-build = { path = "../gen/build", version="0.4.1" }
autocxx-build = { path = "../gen/build", version="0.5.0" }
2 changes: 1 addition & 1 deletion engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

[package]
name = "autocxx-engine"
version = "0.4.1"
version = "0.5.0"
authors = ["Adrian Taylor <adetaylor@chromium.org>"]
license = "MIT OR Apache-2.0"
description = "Safe autogenerated interop between Rust and C++"
Expand Down
4 changes: 2 additions & 2 deletions gen/build/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

[package]
name = "autocxx-build"
version = "0.4.1"
version = "0.5.0"
authors = ["Adrian Taylor <adetaylor@chromium.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -24,7 +24,7 @@ keywords = ["ffi"]
categories = ["development-tools::ffi", "api-bindings"]

[dependencies]
autocxx-engine = { version="0.4.1", path="../../engine", features = ["build"] }
autocxx-engine = { version="0.5.0", path="../../engine", features = ["build"] }
env_logger = "0.8.1"

[dependencies.syn]
Expand Down
4 changes: 2 additions & 2 deletions gen/cmd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

[package]
name = "autocxx-gen"
version = "0.4.1"
version = "0.5.0"
authors = ["Adrian Taylor <adetaylor@chromium.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -24,7 +24,7 @@ keywords = ["ffi"]
categories = ["development-tools::ffi", "api-bindings"]

[dependencies]
autocxx-engine = { version="0.4.1", path="../../engine" }
autocxx-engine = { version="0.5.0", path="../../engine" }
clap = "2.33"
indoc = "1.0"
quote = "1.0.7"
Expand Down
4 changes: 2 additions & 2 deletions macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

[package]
name = "autocxx-macro"
version = "0.4.1"
version = "0.5.0"
authors = ["Adrian Taylor <adetaylor@chromium.org>"]
license = "MIT OR Apache-2.0"
description = "Safe autogenerated interop between Rust and C++"
Expand All @@ -27,7 +27,7 @@ categories = ["development-tools::ffi", "api-bindings"]
proc-macro = true

[dependencies]
autocxx-engine = { path="../engine", version="0.4.1" }
autocxx-engine = { path="../engine", version="0.5.0" }
proc-macro-error = "1.0"

[dependencies.syn]
Expand Down

0 comments on commit 8fd2f02

Please sign in to comment.