-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated cargo toml and bump versions
Signed-off-by: gabrik <[email protected]>
- Loading branch information
Showing
3 changed files
with
31 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,18 @@ exclude = [ | |
"zrpc-perf", | ||
] | ||
|
||
[workspace.package] | ||
version = "0.6.1-alpha.1" | ||
authors = ["gabrik <[email protected]>"] | ||
categories = ["network-programming"] | ||
description = "Framework for decentralized and distributed microservices over Zenoh." | ||
edition = "2018" | ||
homepage = "https://github.com/ZettaScaleLabs/zenoh-rpc" | ||
license = " EPL-2.0 OR Apache-2.0" | ||
readme = "README.md" | ||
repository = "https://github.com/ZettaScaleLabs/zenoh-rpc" | ||
|
||
|
||
|
||
[profile.release] | ||
debug=false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "zrpc-macros" | ||
version = "0.6.0-alpha2" | ||
authors = ["gabrik <[email protected]>"] | ||
categories = ["network-programming"] | ||
description = "Framework for decentralized and distributed microservices over Zenoh." | ||
edition = "2018" | ||
homepage = "https://github.com/ZettaScaleLabs/zenoh-rpc" | ||
license = " EPL-2.0 OR Apache-2.0" | ||
readme = "../README.md" | ||
repository = "https://github.com/ZettaScaleLabs/zenoh-rpc" | ||
version.workspace = true | ||
authors.workspace = true | ||
categories.workspace = true | ||
description.workspace = true | ||
edition.workspace = true | ||
homepage.workspace = true | ||
license.workspace = true | ||
readme.workspace = true | ||
repository.workspace = true | ||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
# To build with debug on macros: RUSTFLAGS="-Z macro-backtrace" | ||
|
||
|
@@ -29,7 +29,7 @@ uhlc = "=0.5" | |
uuid = { version = "=1.2.2", features = ["serde", "v4"] } | ||
zenoh = { version = "=0.7.0-rc", default-features = false } | ||
zenoh-util = { version = "=0.7.0-rc" } | ||
zrpc = { version = "0.6.0-alpha2", path = "../zrpc" } | ||
zrpc = { version = "0.6.1-alpha.1", path = "../zrpc" } | ||
|
||
[dev-dependencies] | ||
serde_json = "1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
[package] | ||
name = "zrpc" | ||
version = "0.6.0-alpha2" | ||
authors = ["gabrik <[email protected]>"] | ||
categories = ["network-programming"] | ||
description = "Framework for decentralized and distributed microservices over Zenoh." | ||
edition = "2018" | ||
homepage = "https://github.com/ZettaScaleLabs/zenoh-rpc" | ||
license = " EPL-2.0 OR Apache-2.0" | ||
readme = "../README.md" | ||
repository = "https://github.com/ZettaScaleLabs/zenoh-rpc" | ||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
version.workspace = true | ||
authors.workspace = true | ||
categories.workspace = true | ||
description.workspace = true | ||
edition.workspace = true | ||
homepage.workspace = true | ||
license.workspace = true | ||
readme.workspace = true | ||
repository.workspace = true | ||
|
||
[dependencies] | ||
async-std = { version = "=1.12.0", features = ["attributes"] } | ||
|