bump version numbers to 0.1.0
This commit is contained in:
parent
fe23d94bcd
commit
8abcb5632b
14
Cargo.toml
14
Cargo.toml
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "r2r"
|
name = "r2r"
|
||||||
version = "0.0.8"
|
version = "0.1.0"
|
||||||
authors = ["Martin Dahl <martin.dahl@gmail.com>"]
|
authors = ["Martin Dahl <martin.dahl@gmail.com>"]
|
||||||
description = "Minimal ros2 bindings."
|
description = "Minimal ros2 bindings."
|
||||||
license = "Apache-2.0/MIT"
|
license = "Apache-2.0/MIT"
|
||||||
|
|
@ -12,10 +12,10 @@ serde = { version = "1.0.123", features = ["derive"] }
|
||||||
serde_json = "1.0.62"
|
serde_json = "1.0.62"
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
common = { path = "common", version = "0.0.3" }
|
common = { path = "common", version = "0.1.0" }
|
||||||
rcl = { path = "rcl", version = "0.0.3" }
|
rcl = { path = "rcl", version = "0.1.0" }
|
||||||
msg_gen = { path = "msg_gen", version = "0.0.3" }
|
msg_gen = { path = "msg_gen", version = "0.1.0" }
|
||||||
actions = { path = "actions", version = "0.0.1" }
|
actions = { path = "actions", version = "0.1.0" }
|
||||||
uuid = { version = "0.8", features = ["serde", "v4"] }
|
uuid = { version = "0.8", features = ["serde", "v4"] }
|
||||||
futures = "0.3.15"
|
futures = "0.3.15"
|
||||||
|
|
||||||
|
|
@ -25,7 +25,7 @@ futures = "0.3.15"
|
||||||
tokio = { version = "1", features = ["full"] } # for example
|
tokio = { version = "1", features = ["full"] } # for example
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
common = { path = "common", version = "0.0.3" }
|
common = { path = "common", version = "0.1.0" }
|
||||||
msg_gen = { path = "msg_gen", version = "0.0.3" }
|
msg_gen = { path = "msg_gen", version = "0.1.0" }
|
||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,16 @@
|
||||||
[package]
|
[package]
|
||||||
name = "actions"
|
name = "actions"
|
||||||
version = "0.0.1"
|
version = "0.1.0"
|
||||||
authors = ["Martin Dahl <martin.dahl@gmail.com>"]
|
authors = ["Martin Dahl <martin.dahl@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rcl = { path = "../rcl", version = "0.0.3" }
|
rcl = { path = "../rcl", version = "0.1.0" }
|
||||||
msg_gen = { path = "../msg_gen", version = "0.0.3" }
|
msg_gen = { path = "../msg_gen", version = "0.1.0" }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
bindgen = "0.57.0"
|
bindgen = "0.57.0"
|
||||||
itertools = "0.10.0"
|
itertools = "0.10.0"
|
||||||
common = { path = "../common", version = "0.0.3" }
|
common = { path = "../common", version = "0.1.0" }
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "common"
|
name = "common"
|
||||||
version = "0.0.3"
|
version = "0.1.0"
|
||||||
authors = ["Martin Dahl <martin.dahl@gmail.com>"]
|
authors = ["Martin Dahl <martin.dahl@gmail.com>"]
|
||||||
description = "Minimal ros2 bindings."
|
description = "Minimal ros2 bindings."
|
||||||
license = "Apache-2.0/MIT"
|
license = "Apache-2.0/MIT"
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,16 @@
|
||||||
[package]
|
[package]
|
||||||
name = "msg_gen"
|
name = "msg_gen"
|
||||||
version = "0.0.3"
|
version = "0.1.0"
|
||||||
authors = ["Martin Dahl <martin.dahl@gmail.com>"]
|
authors = ["Martin Dahl <martin.dahl@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
rcl = { path = "../rcl", version = "0.0.3" }
|
rcl = { path = "../rcl", version = "0.1.0" }
|
||||||
common = { path = "../common", version = "0.0.3" }
|
common = { path = "../common", version = "0.1.0" }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
bindgen = "0.57.0"
|
bindgen = "0.57.0"
|
||||||
rcl = { path = "../rcl", version = "0.0.3" }
|
rcl = { path = "../rcl", version = "0.1.0" }
|
||||||
common = { path = "../common", version = "0.0.3" }
|
common = { path = "../common", version = "0.1.0" }
|
||||||
heck = "0.3.2"
|
heck = "0.3.2"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "rcl"
|
name = "rcl"
|
||||||
version = "0.0.3"
|
version = "0.1.0"
|
||||||
authors = ["Martin Dahl <martin.dahl@gmail.com>"]
|
authors = ["Martin Dahl <martin.dahl@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
|
|
@ -11,4 +11,4 @@ widestring = "0.4.3"
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
bindgen = "0.57.0"
|
bindgen = "0.57.0"
|
||||||
itertools = "0.10.0"
|
itertools = "0.10.0"
|
||||||
common = { path = "../common", version = "0.0.3" }
|
common = { path = "../common", version = "0.1.0" }
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue