Skip to content

Commit c1035e5

Browse files
authored
release volo 0.2 (#58)
1 parent e2a3d11 commit c1035e5

File tree

6 files changed

+33
-28
lines changed

6 files changed

+33
-28
lines changed

Cargo.lock

+19-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

volo-build/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volo-build"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
edition = "2021"
55
description = "Compile thrift and protobuf idls into rust code at compile-time."
66
documentation = "https://docs.rs/volo-build"
@@ -17,7 +17,7 @@ keywords = ["thrift", "grpc", "protobuf", "volo", "build"]
1717
maintenance = { status = "actively-developed" }
1818

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

2222
anyhow = "1"
2323
nom = "7"

volo-cli/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volo-cli"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
edition = "2021"
55
description = """
66
volo-cli is the command line interface for volo, which provides
@@ -22,8 +22,8 @@ keywords = ["thrift", "grpc", "protobuf", "volo", "cli"]
2222
maintenance = { status = "actively-developed" }
2323

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

2828
heck = "0.4"
2929
itertools = "0.10"

volo-grpc/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volo-grpc"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
description = "gRPC framework implementation of volo."
66
documentation = "https://docs.rs/volo-grpc"
@@ -18,8 +18,8 @@ keywords = ["async", "rpc", "grpc", "protobuf"]
1818
maintenance = { status = "actively-developed" }
1919

2020
[dependencies]
21-
volo = { version = "0.1", path = "../volo" }
22-
motore = { git = "https://github.com/cloudwego/motore", branch = "main" }
21+
volo = { version = "0.2", path = "../volo" }
22+
motore = "0.2"
2323
metainfo = "0.6"
2424

2525
tokio = { version = "1", features = ["time", "rt", "net", "sync"] }

volo-thrift/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volo-thrift"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
description = "Thrift RPC framework implementation of volo."
66
documentation = "https://docs.rs/volo-thrift"
@@ -18,9 +18,9 @@ keywords = ["async", "rpc", "thrift"]
1818
maintenance = { status = "actively-developed" }
1919

2020
[dependencies]
21-
volo = { version = "0.1", path = "../volo" }
22-
pilota = { git = "https://github.com/cloudwego/pilota", branch = "main" }
23-
motore = { git = "https://github.com/cloudwego/motore", branch = "main" }
21+
volo = { version = "0.2", path = "../volo" }
22+
pilota = "0.2"
23+
motore = "0.2"
2424
metainfo = "0.6"
2525

2626
tokio = { version = "1", features = [

volo/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volo"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
description = """
66
Volo is a high-performance and strong-extensibility Rust RPC framework that helps developers build microservices.
@@ -20,7 +20,7 @@ keywords = ["async", "rpc", "thrift", "grpc", "protobuf"]
2020
maintenance = { status = "actively-developed" }
2121

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

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

0 commit comments

Comments
 (0)