Skip to content

Commit

Permalink
release volo 0.2 (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
LYF1999 authored Oct 18, 2022
1 parent e2a3d11 commit c1035e5
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 28 deletions.
33 changes: 19 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions volo-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "volo-build"
version = "0.1.1"
version = "0.2.0"
edition = "2021"
description = "Compile thrift and protobuf idls into rust code at compile-time."
documentation = "https://docs.rs/volo-build"
Expand All @@ -17,7 +17,7 @@ keywords = ["thrift", "grpc", "protobuf", "volo", "build"]
maintenance = { status = "actively-developed" }

[dependencies]
pilota-build = { git = "https://github.com/cloudwego/pilota", branch = "main" }
pilota-build = "0.2"

anyhow = "1"
nom = "7"
Expand Down
6 changes: 3 additions & 3 deletions volo-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "volo-cli"
version = "0.1.1"
version = "0.2.0"
edition = "2021"
description = """
volo-cli is the command line interface for volo, which provides
Expand All @@ -22,8 +22,8 @@ keywords = ["thrift", "grpc", "protobuf", "volo", "cli"]
maintenance = { status = "actively-developed" }

[dependencies]
pilota-thrift-parser = { git = "https://github.com/cloudwego/pilota", branch = "main" }
volo-build = { version = "0.1", path = "../volo-build" }
pilota-thrift-parser = "0.3"
volo-build = { version = "0.2", path = "../volo-build" }

heck = "0.4"
itertools = "0.10"
Expand Down
6 changes: 3 additions & 3 deletions volo-grpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "volo-grpc"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
description = "gRPC framework implementation of volo."
documentation = "https://docs.rs/volo-grpc"
Expand All @@ -18,8 +18,8 @@ keywords = ["async", "rpc", "grpc", "protobuf"]
maintenance = { status = "actively-developed" }

[dependencies]
volo = { version = "0.1", path = "../volo" }
motore = { git = "https://github.com/cloudwego/motore", branch = "main" }
volo = { version = "0.2", path = "../volo" }
motore = "0.2"
metainfo = "0.6"

tokio = { version = "1", features = ["time", "rt", "net", "sync"] }
Expand Down
8 changes: 4 additions & 4 deletions volo-thrift/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "volo-thrift"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
description = "Thrift RPC framework implementation of volo."
documentation = "https://docs.rs/volo-thrift"
Expand All @@ -18,9 +18,9 @@ keywords = ["async", "rpc", "thrift"]
maintenance = { status = "actively-developed" }

[dependencies]
volo = { version = "0.1", path = "../volo" }
pilota = { git = "https://github.com/cloudwego/pilota", branch = "main" }
motore = { git = "https://github.com/cloudwego/motore", branch = "main" }
volo = { version = "0.2", path = "../volo" }
pilota = "0.2"
motore = "0.2"
metainfo = "0.6"

tokio = { version = "1", features = [
Expand Down
4 changes: 2 additions & 2 deletions volo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "volo"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
description = """
Volo is a high-performance and strong-extensibility Rust RPC framework that helps developers build microservices.
Expand All @@ -20,7 +20,7 @@ keywords = ["async", "rpc", "thrift", "grpc", "protobuf"]
maintenance = { status = "actively-developed" }

[dependencies]
motore = { git = "https://github.com/cloudwego/motore", branch = "main" }
motore = "0.2"

tokio = { version = "1", features = ["net", "time", "sync", "io-util"] }
pin-project = "1"
Expand Down

0 comments on commit c1035e5

Please sign in to comment.