Skip to content

Commit 83d8484

Browse files
committed
chore: update version
1 parent e550e53 commit 83d8484

9 files changed

Lines changed: 71 additions & 54 deletions

File tree

Cargo.lock

Lines changed: 22 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ license = "MIT OR Apache-2.0"
2424
rust-version = "1.85.0"
2525

2626
[workspace.dependencies]
27-
pilota = "0.12"
28-
pilota-build = "0.12.2"
29-
pilota-thrift-parser = "0.12"
30-
pilota-thrift-reflect = "0.1"
31-
pilota-thrift-fieldmask = "0.1"
27+
pilota = "0.13"
28+
pilota-build = "0.13"
29+
pilota-thrift-parser = "0.13"
30+
pilota-thrift-reflect = "0.2"
31+
pilota-thrift-fieldmask = "0.2"
3232
motore = "0.4.1"
3333
metainfo = "0.7.14"
3434

@@ -151,16 +151,11 @@ panic = 'unwind'
151151
incremental = false
152152
overflow-checks = false
153153

154-
[patch.crates-io]
154+
# [patch.crates-io]
155155
# pilota = { git = "https://github.com/cloudwego/pilota.git", branch = "main" }
156156
# pilota-build = { git = "https://github.com/cloudwego/pilota.git", branch = "main" }
157157
# pilota-thrift-parser = { git = "https://github.com/cloudwego/pilota.git", branch = "main" }
158158
# pilota-thrift-reflect = { git = "https://github.com/cloudwego/pilota.git", branch = "main" }
159159
# pilota-thrift-fieldmask = { git = "https://github.com/cloudwego/pilota.git", branch = "main" }
160160
# motore = { git = "https://github.com/cloudwego/motore.git", branch = "main" }
161161
# metainfo = { git = "https://github.com/cloudwego/metainfo.git", branch = "main"}
162-
pilota = { git = "https://github.com/cloudwego/pilota.git", branch = "refactor/ast" }
163-
pilota-build = { git = "https://github.com/cloudwego/pilota.git", branch = "refactor/ast" }
164-
pilota-thrift-parser = { git = "https://github.com/cloudwego/pilota.git", branch = "refactor/ast" }
165-
pilota-thrift-reflect = { git = "https://github.com/cloudwego/pilota.git", branch = "refactor/ast" }
166-
pilota-thrift-fieldmask = { git = "https://github.com/cloudwego/pilota.git", branch = "refactor/ast" }

volo-build/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volo-build"
3-
version = "0.11.6"
3+
version = "0.12.0"
44
edition.workspace = true
55
homepage.workspace = true
66
repository.workspace = true
@@ -18,7 +18,7 @@ keywords = ["thrift", "grpc", "protobuf", "volo", "build"]
1818
maintenance = { status = "actively-developed" }
1919

2020
[dependencies]
21-
volo = { version = "0.11", path = "../volo" }
21+
volo = { version = "0.12", path = "../volo" }
2222

2323
pilota-build.workspace = true
2424

volo-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volo-cli"
3-
version = "0.11.4"
3+
version = "0.12.0"
44
edition.workspace = true
55
homepage.workspace = true
66
repository.workspace = true
@@ -23,7 +23,7 @@ keywords = ["thrift", "grpc", "protobuf", "volo", "cli"]
2323
maintenance = { status = "actively-developed" }
2424

2525
[dependencies]
26-
volo-build = { version = "0.11", path = "../volo-build" }
26+
volo-build = { version = "0.12", path = "../volo-build" }
2727
pilota-thrift-parser.workspace = true
2828
faststr.workspace = true
2929

volo-grpc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volo-grpc"
3-
version = "0.11.8"
3+
version = "0.12.0"
44
edition.workspace = true
55
homepage.workspace = true
66
repository.workspace = true
@@ -24,7 +24,7 @@ maintenance = { status = "actively-developed" }
2424

2525
[dependencies]
2626
pilota.workspace = true
27-
volo = { version = "0.11", path = "../volo" }
27+
volo = { version = "0.12", path = "../volo" }
2828
motore = { workspace = true, features = ["tower"] }
2929
metainfo.workspace = true
3030
async-broadcast.workspace = true

volo-http/Cargo.toml

Lines changed: 27 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volo-http"
3-
version = "0.4.3"
3+
version = "0.5.0"
44
edition.workspace = true
55
homepage.workspace = true
66
repository.workspace = true
@@ -19,7 +19,7 @@ keywords = ["async", "rpc", "http"]
1919
maintenance = { status = "actively-developed" }
2020

2121
[dependencies]
22-
volo = { version = "0.11", path = "../volo" }
22+
volo = { version = "0.12", path = "../volo" }
2323

2424
ahash.workspace = true
2525
bytes.workspace = true
@@ -56,14 +56,14 @@ url.workspace = true
5656
# =====optional=====
5757

5858
# server optional
59-
ipnet = { workspace = true, optional = true } # client ip
60-
matchit = { workspace = true, optional = true } # route matching
61-
memchr = { workspace = true, optional = true } # sse
59+
ipnet = { workspace = true, optional = true } # client ip
60+
matchit = { workspace = true, optional = true } # route matching
61+
memchr = { workspace = true, optional = true } # sse
6262
scopeguard = { workspace = true, optional = true } # defer
6363

6464
# client optional
65-
async-broadcast = { workspace = true, optional = true } # service discover
66-
chrono = { workspace = true, optional = true } # stat
65+
async-broadcast = { workspace = true, optional = true } # service discover
66+
chrono = { workspace = true, optional = true } # stat
6767
hickory-resolver = { workspace = true, optional = true } # dns resolver
6868
mime_guess = { workspace = true, optional = true }
6969

@@ -101,26 +101,38 @@ default-client = ["client", "http1", "json"]
101101
default-server = ["server", "http1", "query", "form", "json", "multipart"]
102102

103103
full = [
104-
"client", "server", # core
105-
"http1", "http2", # protocol
106-
"query", "form", "json", # serde
107-
"tls", # https
108-
"cookie", "multipart", "ws", # exts
104+
"client",
105+
"server", # core
106+
"http1",
107+
"http2", # protocol
108+
"query",
109+
"form",
110+
"json", # serde
111+
"tls", # https
112+
"cookie",
113+
"multipart",
114+
"ws", # exts
109115
]
110116

111117
http1 = ["hyper/http1", "hyper-util/http1"]
112118
http2 = ["hyper/http2", "hyper-util/http2"]
113119

114120
client = [
115121
"hyper/client",
116-
"dep:async-broadcast", "dep:chrono", "dep:hickory-resolver",
122+
"dep:async-broadcast",
123+
"dep:chrono",
124+
"dep:hickory-resolver",
117125
] # client core
118126
server = [
119127
"hyper-util/server",
120-
"dep:ipnet", "dep:matchit", "dep:memchr", "dep:scopeguard", "dep:mime_guess",
128+
"dep:ipnet",
129+
"dep:matchit",
130+
"dep:memchr",
131+
"dep:scopeguard",
132+
"dep:mime_guess",
121133
] # server core
122134

123-
__serde = ["dep:serde"] # a private feature for enabling `serde` by `serde_xxx`
135+
__serde = ["dep:serde"] # a private feature for enabling `serde` by `serde_xxx`
124136
query = ["__serde", "dep:serde_urlencoded"]
125137
form = ["__serde", "dep:serde_urlencoded"]
126138
json = ["__serde", "dep:sonic-rs"]

volo-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volo-macros"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
edition.workspace = true
55
homepage.workspace = true
66
repository.workspace = true

volo-thrift/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volo-thrift"
3-
version = "0.11.2"
3+
version = "0.12.0"
44
edition.workspace = true
55
homepage.workspace = true
66
repository.workspace = true
@@ -19,7 +19,7 @@ keywords = ["async", "rpc", "thrift"]
1919
maintenance = { status = "actively-developed" }
2020

2121
[dependencies]
22-
volo = { version = "0.11", path = "../volo" }
22+
volo = { version = "0.12", path = "../volo" }
2323
pilota.workspace = true
2424
motore.workspace = true
2525
metainfo.workspace = true

volo/Cargo.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volo"
3-
version = "0.11.1"
3+
version = "0.12.0"
44
edition.workspace = true
55
homepage.workspace = true
66
repository.workspace = true
@@ -79,5 +79,10 @@ __rustls = [
7979
rustls-aws-lc-rs = ["__rustls", "rustls/aws_lc_rs"]
8080
rustls-ring = ["__rustls", "rustls/ring"]
8181

82-
native-tls = ["__tls", "dep:native-tls", "dep:tokio-native-tls", "native-tls/alpn"]
82+
native-tls = [
83+
"__tls",
84+
"dep:native-tls",
85+
"dep:tokio-native-tls",
86+
"native-tls/alpn",
87+
]
8388
native-tls-vendored = ["native-tls", "tokio-native-tls/vendored"]

0 commit comments

Comments
 (0)